SVG React component that renders the Flamingo brand logo, accepting configurable size, color, and standard SVG props. ## Key Components ### `FlamingoLogo` A named export functional component with the following props: | Prop | Type | Default | Description | |------|------|---------|-------------| | `size` | `number` | `120` | Width and height of the SVG in pixels | | `color` | `string` | `var(--ods-flamingo-pink-base)` | Fill color for the logo path | | `className` | `string` | `''` | Additional CSS class names | | `...props` | `React.SVGProps` | — | Any valid SVG element props | ## Usage Example ```typescript import { FlamingoLogo } from './flamingo-logo'; // Default usage // Custom size and color // With className for Tailwind/CSS overrides // Override to white for dark backgrounds ```