mirror of
https://github.com/iconify/iconify.git
synced 2024-11-09 23:00:56 +00:00
fix(svelte): add props for svg to component
This commit is contained in:
parent
13eaa39f2d
commit
a03d601204
5
components/svelte/src/svelte.d.ts
vendored
5
components/svelte/src/svelte.d.ts
vendored
@ -1,6 +1,9 @@
|
||||
import { SvelteComponentTyped } from 'svelte';
|
||||
import { HTMLAttributes } from 'svelte/elements';
|
||||
|
||||
/**
|
||||
* Svelte component
|
||||
*/
|
||||
export default class Icon extends SvelteComponentTyped<IconProps> {}
|
||||
export default class Icon extends SvelteComponentTyped<
|
||||
IconProps & HTMLAttributes<SVGSVGElement>
|
||||
> {}
|
||||
|
Loading…
Reference in New Issue
Block a user