ListIcon
constListIcon: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/ListIcon.tsx:28
List icon component for list view layouts.
A standard list lines icon commonly used for switching to list view, linear data display, and structured content in editor interfaces.
Example
// Basic usage<ListIcon />
// With custom size and color<ListIcon size="md" color="primary" />
// In a view toggle<Button icon={<ListIcon />}>List View</Button>