BugIcon
constBugIcon: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/BugIcon.tsx:27
Bug icon component for debugging and issue reporting.
A symmetrical insect silhouette commonly used for debugger panels, “Report bug” actions, and error severity indicators.
Example
// Basic usage<BugIcon />
// With custom size and color<BugIcon size="md" color="error" />
// In a debugger panel toggle<IconButton icon={<BugIcon />} label="Toggle debugger" />