@boxyhq/svelte-ui
Version:
Svelte UI components from BoxyHQ
21 lines (20 loc) • 661 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import { IconButtonProps } from "../types";
declare const __propDef: {
props: {
classNames?: IconButtonProps["classNames"];
handleClick: IconButtonProps["handleClick"];
label?: IconButtonProps["label"];
icon: IconButtonProps["icon"];
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type IndexProps = typeof __propDef.props;
export type IndexEvents = typeof __propDef.events;
export type IndexSlots = typeof __propDef.slots;
export default class Index extends SvelteComponentTyped<IndexProps, IndexEvents, IndexSlots> {
}
export {};