MinusIcon
constMinusIcon: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/MinusIcon.tsx:27
Minus icon component for remove/decrement actions.
A single horizontal stroke commonly used to remove items, decrement
counters, and zoom out. Pairs with AddIcon for [+/-] controls.
Example
// Basic usage<MinusIcon />
// With custom size and color<MinusIcon size="sm" color="muted" />
// In a counter control<IconButton icon={<MinusIcon />} label="Decrease" />