flowbite-svelte
Version:
Flowbite components for Svelte
18 lines (17 loc) • 566 B
TypeScript
import type { ClipboardProps } from "..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [ClipboardProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L467)
* ## Props
* @prop children
* @prop embedded = false
* @prop value = $bindable("")
* @prop success = $bindable(false)
* @prop onclick
* @prop class: className = ""
* @prop ...restProps
*/
declare const Clipboard: import("svelte").Component<ClipboardProps, {}, "value" | "success">;
type Clipboard = ReturnType<typeof Clipboard>;
export default Clipboard;