UNPKG

@wordpress/components

Version:
13 lines (11 loc) 236 B
/** * External dependencies */ import type { ReactNode } from 'react'; export interface ClipboardButtonProps { children: ReactNode; onCopy: () => void; onFinishCopy?: () => void; text: string; __next40pxDefaultSize?: boolean; }