ArchiveIcon
constArchiveIcon: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/ArchiveIcon.tsx:27
Archive icon component for archiving and storing items.
A box with a lid commonly used for archiving content, moving items out of active views, and long-term storage actions.
Example
// Basic usage<ArchiveIcon />
// With custom size and color<ArchiveIcon size="md" color="muted" />
// In an archive action<Button icon={<ArchiveIcon />}>Archive</Button>