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) • 745 B
TypeScript
/** @typedef {typeof __propDef.props} Square3Stack3dIconProps */
/** @typedef {typeof __propDef.events} Square3Stack3dIconEvents */
/** @typedef {typeof __propDef.slots} Square3Stack3dIconSlots */
export default class Square3Stack3dIcon extends SvelteComponentTyped<{
[x: string]: any;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type Square3Stack3dIconProps = typeof __propDef.props;
export type Square3Stack3dIconEvents = typeof __propDef.events;
export type Square3Stack3dIconSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};