@initia/icons-svelte
Version:
```js import { IconName } from "@initia/icons-svelte"
18 lines (17 loc) • 544 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
size?: number | undefined;
color?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ContactBookProps = typeof __propDef.props;
export type ContactBookEvents = typeof __propDef.events;
export type ContactBookSlots = typeof __propDef.slots;
export default class ContactBook extends SvelteComponentTyped<ContactBookProps, ContactBookEvents, ContactBookSlots> {
}
export {};