equinor/design-system
suggestion: Intellisense suggestions for built-in icons
開放
#4,253 建立於 2025年11月21日
good first issue
倉庫指標
- 星標
- (147 顆星)
- PR 合併指標
- (PR 指標待抓取)
描述
By changing this definition the intellisense suggestions will suggest the known icons, while also allowing other strings.
export type IconName = keyof typeof icons | (string & {});
Alternatively an export of "EdsBuiltinIcons" would a nice alternative. Then I could use ({"" satisfies EdsBuiltinIcon}) to get intellisense for those.
Before:
After: