UNPKG

@daks.dev/svelte.sdk

Version:
9 lines (8 loc) 313 B
import type { IconifyIconAttributes } from './index.d.ts'; type Props = Omit<IconifyIconAttributes, 'icon' | 'aria-label'> & { icon?: string; label?: string | null; }; declare const IconTest: import("svelte").Component<Props, {}, "">; type IconTest = ReturnType<typeof IconTest>; export default IconTest;