UNPKG

@kamrade/svelte-dynamic-button

Version:

A simple button template that supports a flexible set of themes, variants, sizes and shapes. You can find usage examples (MagicButton and SimpleButton components) in the repository.

31 lines (30 loc) 855 B
import { SvelteComponent } from "svelte"; import type { ISimpleButtonProps } from './FashionButton.js'; declare const __propDef: { props: { [x: string]: any; props?: ISimpleButtonProps | undefined; buttonFocus?: (() => unknown) | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: { prefix: { slot: string; }; suffix: { slot: string; }; default: {}; loader: { slot: string; }; }; }; export type FashionButtonProps = typeof __propDef.props; export type FashionButtonEvents = typeof __propDef.events; export type FashionButtonSlots = typeof __propDef.slots; export default class FashionButton extends SvelteComponent<FashionButtonProps, FashionButtonEvents, FashionButtonSlots> { } export {};