ArrowUpIcon
constArrowUpIcon: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/ArrowUpIcon.tsx:27
Arrow Up icon component for upward navigation and collapse actions.
A standard upward-pointing arrow commonly used for collapse buttons, upward navigation, and minimizing content in editor interfaces.
Example
// Basic usage<ArrowUpIcon />
// With custom size and color<ArrowUpIcon size="lg" color="primary" />
// In a collapse button<Button icon={<ArrowUpIcon />}>Collapse</Button>