@boxyhq/svelte-ui
Version:
Svelte UI components from BoxyHQ
25 lines (24 loc) • 810 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import { ButtonProps } from "../types";
declare const __propDef: {
props: {
variant?: ButtonProps["variant"];
buttonRef?: ButtonProps["buttonRef"];
type?: ButtonProps["type"];
classNames?: ButtonProps["classNames"];
isLoading?: ButtonProps["isLoading"];
handleClick?: ButtonProps["handleClick"];
icon?: ButtonProps["icon"];
name: ButtonProps["name"];
};
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 {};