heroicons-svelte
Version:
The collection of beautiful hand-crafted SVG icons, by the makers of Tailwind CSS, packaged for Svelte apps.
24 lines (23 loc) • 689 B
TypeScript
/** @typedef {typeof __propDef.props} WindowIconProps */
/** @typedef {typeof __propDef.events} WindowIconEvents */
/** @typedef {typeof __propDef.slots} WindowIconSlots */
export default class WindowIcon extends SvelteComponentTyped<{
[x: string]: any;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type WindowIconProps = typeof __propDef.props;
export type WindowIconEvents = typeof __propDef.events;
export type WindowIconSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};