Skip to content

AddIcon

const AddIcon: 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/AddIcon.tsx:28

Add icon component for create/add actions.

A standard plus icon commonly used for adding new items, creating content, and expand functionality in editor interfaces.

Example

// Basic usage
<AddIcon />
// With custom size and color
<AddIcon size="lg" color="primary" />
// In an add button
<Button icon={<AddIcon />}>Add Item</Button>