Skip to content

UnlinkIcon

const UnlinkIcon: 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/UnlinkIcon.tsx:23

Unlink icon — a broken chain.

Indicates that two values are decoupled (no longer linked). Pair with LinkIcon to render a toggle: link → unlink. Common in coordinate inputs, transform locks, color-channel groups.

Example

<IconButton aria-label="Unlink axes">
<UnlinkIcon />
</IconButton>