mirror of
https://github.com/iconify/iconify.git
synced 2025-01-24 15:48:30 +00:00
10 lines
260 B
TypeScript
10 lines
260 B
TypeScript
import { SvelteComponent } from 'svelte';
|
|
import type { SvelteHTMLElements } from 'svelte/elements';
|
|
|
|
/**
|
|
* Svelte component
|
|
*/
|
|
export default class Icon extends SvelteComponent<
|
|
SvelteHTMLElements['svg'] & IconProps & Record<`data-${string}`, string>
|
|
> {}
|