equinor/design-system
suggestion: Intellisense suggestions for built-in icons
Aberta
#4.253 aberto em 21 de nov. de 2025
good first issue
Métricas do repositório
- Stars
- (147 estrelas)
- Métricas de merge de PR
- (Métricas PR pendentes)
Description
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: