2
0
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:
Vjacheslav Trushkin 2023-04-17 21:38:44 +03:00
parent 13eaa39f2d
commit a03d601204

View File

@ -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>
> {}