2
0
mirror of https://github.com/iconify/iconify.git synced 2025-02-03 20:48:27 +00:00

10 lines
265 B
TypeScript
Raw Normal View History

import { SvelteComponentTyped } from 'svelte';
import { HTMLAttributes } from 'svelte/elements';
/**
* Svelte component
*/
export default class Icon extends SvelteComponentTyped<
2023-04-19 22:17:21 +03:00
IconProps & HTMLAttributes<SVGSVGElement> & Record<`data-${string}`, string>
> {}