FullscreenIcon
constFullscreenIcon: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/FullscreenIcon.tsx:27
Fullscreen icon component for expanding to fullscreen mode.
A standard fullscreen icon commonly used for maximizing content, entering fullscreen mode, and expanding views in editor interfaces.
Example
// Basic usage<FullscreenIcon />
// With custom size and color<FullscreenIcon size="md" color="primary" />
// In a fullscreen button<Button icon={<FullscreenIcon />}>Fullscreen</Button>