svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
24 lines (23 loc) • 671 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
control?: boolean | undefined;
option?: boolean | undefined;
shift?: boolean | undefined;
command?: boolean | undefined;
variant?: "filled" | "none" | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type KbdProps = typeof __propDef.props;
export type KbdEvents = typeof __propDef.events;
export type KbdSlots = typeof __propDef.slots;
export default class Kbd extends SvelteComponentTyped<KbdProps, KbdEvents, KbdSlots> {
}
export {};