ChevronUpIcon
constChevronUpIcon: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/ChevronUpIcon.tsx:27
Chevron Up icon component for collapse and upward indicators.
A subtle upward chevron commonly used for collapsing content, accordion collapse, and subtle directional cues in editor interfaces.
Example
// Basic usage<ChevronUpIcon />
// With custom size and color<ChevronUpIcon size="sm" color="muted" />
// In a collapsible section<Button icon={<ChevronUpIcon />}>Collapse</Button>