UserIcon
constUserIcon: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/UserIcon.tsx:28
User icon component for user profiles and accounts.
A standard user silhouette icon commonly used for user profiles, account management, and person-related features in editor interfaces.
Example
// Basic usage<UserIcon />
// With custom size and color<UserIcon size="sm" color="secondary" />
// In a profile context<Button icon={<UserIcon />}>Profile</Button>