Renders the Flamingo brand logo as an inline SVG React component, and exports the raw SVG path data for use in non-React contexts (e.g. email templates). ## Key Components | Export | Type | Description | |--------|------|-------------| | `FLAMINGO_LOGO_SVG_PATH` | `string` | Raw SVG path `d` attribute — single source of truth for the logo shape | | `FLAMINGO_LOGO_VIEWBOX` | `string` | ViewBox constant `"0 0 121 120"` shared across rendering contexts | | `FlamingoLogo` | `React.FC` | ⚠️ **Deprecated** — SVG logo component; use `icons-v2-generated` instead | ### `FlamingoLogoProps` Extends `React.SVGProps` with: | Prop | Default | Description | |------|---------|-------------| | `className` | `''` | Additional CSS classes | | `fill` | `var(--ods-flamingo-pink-base)` | Fill color for the logo path | ## Usage Example ```typescript // React component (deprecated — prefer icons-v2-generated) import { FlamingoLogo } from './flamingo-logo'; ``` ```typescript // Non-React context (e.g. email HTML) import { FLAMINGO_LOGO_SVG_PATH, FLAMINGO_LOGO_VIEWBOX } from './flamingo-logo'; const emailSvg = ` `; ``` > **Deprecation notice:** `FlamingoLogo` is marked `@deprecated`. For new code, import logo icons from the `icons-v2-generated` package to stay aligned with the current design system.