UNPKG

@steeze-ui/svelte-icon

Version:

This project is still in experimental development. Expect bugs and breaking changes!

8 lines (7 loc) 300 B
type AllowedTags = 'path' | 'circle' | 'rect' | 'polygon' | 'polyline' | 'line' type IconThemeSource = { a: { [attribute: string]: string } } & { [tag in AllowedTags]?: { [attribute: string]: string }[] } export type IconSource = { default: IconThemeSource } & { [theme: string]: IconThemeSource }