SortIcon
constSortIcon: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/SortIcon.tsx:28
Sort icon component for sorting actions.
A standard up/down arrows icon commonly used for sorting content, data ordering, and list arrangement in editor interfaces.
Example
// Basic usage<SortIcon />
// With custom size and color<SortIcon size="sm" color="muted" />
// In a sort context<Button icon={<SortIcon />}>Sort</Button>