UNPKG

@steeze-ui/svelte-icon

Version:

This project is still in experimental development. Expect bugs and breaking changes!

12 lines (11 loc) 311 B
type $$ComponentProps = { src: IconSource; size?: string; theme?: string; title?: string; [key: string]: any; }; import type { IconSource } from './index.js'; declare const Icon: import("svelte").Component<$$ComponentProps, {}, "">; type Icon = ReturnType<typeof Icon>; export default Icon;