UNPKG

flowbite-qwik

Version:

Official Qwik components built for Flowbite and Tailwind CSS

11 lines (10 loc) 365 B
import { PropsOf } from '@builder.io/qwik'; import { Placement } from '@floating-ui/dom'; type ClipboardProps = PropsOf<'button'> & { valueToCopy: string; tooltipCopyLabel?: string; tooltipCopiedLabel?: string; tooltipPlacement?: Placement; }; export declare const ClipboardWithIcon: import("@builder.io/qwik").Component<ClipboardProps>; export {};