Skip to content

CopyIcon

const CopyIcon: 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/CopyIcon.tsx:27

Copy icon component for duplication and clipboard actions.

A standard copy icon commonly used for copying content, duplicating items, and clipboard operations in editor interfaces.

Example

// Basic usage
<CopyIcon />
// With custom size and color
<CopyIcon size="md" color="primary" />
// In a copy button
<Button icon={<CopyIcon />}>Copy</Button>