Skip to content

RobotIcon

const RobotIcon: 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/RobotIcon.tsx:27

Robot icon component representing AI or automation.

A robot head icon commonly used for AI assistant features, chatbots, and automation actions in editor interfaces.

Example

// Basic usage
<RobotIcon />
// With custom size and color
<RobotIcon size="lg" color="primary" />
// In an AI chat button
<Button icon={<RobotIcon />}>AI Assistant</Button>