@steeze-ui/svelte-icon
Advanced tools
Comparing version 1.3.0 to 1.3.1
# @steeze-ui/svelte-icon | ||
## 1.3.1 | ||
### Patch Changes | ||
- improve types | ||
## 1.3.0 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "@steeze-ui/svelte-icon", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"devDependencies": { | ||
@@ -5,0 +5,0 @@ "@steeze-ui/feather-icons": "^1.0.0", |
@@ -1,4 +0,7 @@ | ||
export interface IconSource { | ||
default: { [key: string]: any } | ||
[key: string]: { [key: string]: any } | ||
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 } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7269
29