flowbite-svelte
Version:
Flowbite components for Svelte
14 lines (13 loc) • 393 B
TypeScript
import type { KbdProps } from "..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [KbdProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1110)
* ## Props
* @prop children
* @prop class: className
* @prop ...restProps
*/
declare const Kbd: import("svelte").Component<KbdProps, {}, "">;
type Kbd = ReturnType<typeof Kbd>;
export default Kbd;