UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

25 lines (24 loc) 681 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; name?: string | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type CloseButtonProps = typeof __propDef.props; export type CloseButtonEvents = typeof __propDef.events; export type CloseButtonSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let name: string = 'Close'; */ export default class CloseButton extends SvelteComponentTyped<CloseButtonProps, CloseButtonEvents, CloseButtonSlots> { } export {};