HelpIcon
constHelpIcon: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/HelpIcon.tsx:28
Help icon component for help and support actions.
A standard question mark icon commonly used for help documentation, support links, and information assistance in editor interfaces.
Example
// Basic usage<HelpIcon />
// With custom size and color<HelpIcon size="sm" color="muted" />
// In a help context<Button icon={<HelpIcon />}>Help</Button>