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.

7 lines (6 loc) 249 B
export type TextInputType = "text" | "password"; export type TextInputVariant = "underlined" | "contained"; export type TextInputSize = "sm" | "md" | "lg"; export type KEvent = KeyboardEvent & { currentTarget: EventTarget & HTMLInputElement; };