UNPKG

chakra-ui

Version:

Responsive and accessible React UI components built with React and Emotion

11 lines (9 loc) 233 B
interface IClipboard<T> { value: T; onCopy: () => void; hasCopied: boolean; } /** * `useClipboard` is a custom hook to handle copying content to clipboard */ export default function useClipboard<T>(value: T): IClipboard<T>;