UNPKG

svelte-tuicss

Version:

Svelte component library for the Tuicss UI framework.

27 lines (26 loc) 802 B
import { SvelteComponent } from "svelte"; import { Color, MildColor } from '../enums.js'; declare const __propDef: { props: { [x: string]: any; color?: Color | MildColor | undefined; textColor?: Color | MildColor | undefined; light?: boolean | undefined; disabled?: boolean | undefined; fullWidth?: boolean | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type TuiButtonProps = typeof __propDef.props; export type TuiButtonEvents = typeof __propDef.events; export type TuiButtonSlots = typeof __propDef.slots; export default class TuiButton extends SvelteComponent<TuiButtonProps, TuiButtonEvents, TuiButtonSlots> { } export {};