A React component that renders the Claude AI logo as an SVG icon with customizable properties. ## Key Components - **ClaudeIcon**: Main component that renders the Claude logo SVG - **ClaudeIconProps**: Interface extending standard SVG props for type safety - **SVG Path**: Official Claude logo shape with characteristic orange (#D97757) color ## Usage Example ```typescript import { ClaudeIcon } from './claude-icon'; // Basic usage // With custom size and styling // As a clickable button icon // With aria attributes for accessibility ``` The component accepts all standard SVG props (className, style, onClick, etc.) and uses `1em` sizing by default to inherit font size from its container. The icon includes proper accessibility labeling with `aria-label="Claude"`.