Skip to content

LinkIcon

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

Link icon component for linking and connection actions.

A standard link icon commonly used for creating links, connecting content, and URL-related features in editor interfaces.

Example

// Basic usage
<LinkIcon />
// With custom size and color
<LinkIcon size="md" color="primary" />
// In a link button
<Button icon={<LinkIcon />}>Add Link</Button>