A React SVG component that renders the HubSpot brand logo with customizable styling and default orange brand color. ## Key Components - **HubspotIcon**: Main React functional component that renders the HubSpot logo as an SVG - **Props**: Extends `React.SVGProps` with custom `fill` prop defaulting to HubSpot's brand orange (`#FF7A59`) - **Styling**: Uses the `cn` utility for conditional class name merging with `inline-block` as default display ## Usage Example ```typescript import { HubspotIcon } from './hubspot-icon'; // Basic usage with default orange color // Custom color override // With additional SVG props ``` The component accepts all standard SVG props and applies responsive sizing through className. The default fill color matches HubSpot's official brand guidelines.