2
0
mirror of https://github.com/iconify/iconify.git synced 2025-01-05 15:02:09 +00:00

fix: correct svelte component's TS type

This commit is contained in:
hackape 2023-04-08 08:41:12 +08:00 committed by GitHub
parent 28dcf961a3
commit 6a84a2f40d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
import { SvelteComponent } from 'svelte';
import { SvelteComponentTyped } from 'svelte';
/**
* Svelte component
*/
export default class Icon extends SvelteComponent {}
export default class Icon extends SvelteComponentTyped<IconProps> {}