UNPKG

@kadoui/react

Version:

Kadoui primitive components for React

8 lines 434 B
import { ButtonHTMLAttributes, ReactNode } from "react"; export type ClipboardPropsT = ButtonHTMLAttributes<HTMLButtonElement> & { text: string; timeout?: number; copiedChildren?: ReactNode; }; export declare function Clipboard({ copiedChildren, onClick, children, text, title, "aria-label": ariaLabel, timeout, ...props }: ClipboardPropsT): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Clipboard.d.ts.map