UNPKG

@blockstack/ui

Version:

Blockstack UI components built using React and styled-components with styled-system.

8 lines (7 loc) 180 B
interface Clipboard { value: string; onCopy: () => void; hasCopied: boolean; } declare function useClipboard(value: string): Clipboard; export { useClipboard };