Skip to content

PasteIcon

const PasteIcon: NamedExoticComponent<Omit<{ children: ReactNode; className?: string; color?: IconColor; decorative?: boolean; ref?: Ref<SVGSVGElement>; size?: IconSize; testId?: string; title?: string; }, "children">>

Defined in: src/components/Icons/PasteIcon.tsx:28

Paste icon component for paste actions.

A standard clipboard icon commonly used for pasting content, inserting items, and clipboard operations in editor interfaces.

Example

// Basic usage
<PasteIcon />
// With custom size and color
<PasteIcon size="lg" color="primary" />
// In a paste button
<Button icon={<PasteIcon />}>Paste</Button>