UNPKG

@watheia/docs.ui.copy-box

Version:
12 lines (11 loc) 375 B
import React from "react"; export declare type CopyBoxProps = { /** * specify the link to be copied to your clipboard */ children: string; } & React.HTMLAttributes<HTMLDivElement>; /** * A UI component that allows copying a link to the clipboard */ export declare function CopyBox({ children, className, ...rest }: CopyBoxProps): JSX.Element;