agnostic-svelte
Version:
AgnosticUI (svelte)
32 lines (31 loc) • 796 B
TypeScript
/** @typedef {typeof __propDef.props} IconSvgProps */
/** @typedef {typeof __propDef.events} IconSvgEvents */
/** @typedef {typeof __propDef.slots} IconSvgSlots */
export default class IconSvg extends SvelteComponentTyped<{
[x: string]: any;
type?: string;
size?: number;
}, {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type IconSvgProps = typeof __propDef.props;
export type IconSvgEvents = typeof __propDef.events;
export type IconSvgSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
type?: string;
size?: number;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};