A deprecated SVG React component that renders the OpenMSP logo with two overlapping speech bubbles and a circular accent, supporting customizable fill colors. ## Key Components ### `OpenmspLogoProps` Extends `React.SVGProps` with the following optional props: | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | `''` | CSS class for the SVG element | | `frontBubbleColor` | `string` | `#000000` | Fill color for the front speech bubble and circle | | `innerFrontBubbleColor` | `string` | `#ffffff` | Fill color for the inner area of the front bubble | | `backBubbleColor` | `string` | `#ffffff` | Fill color for the back speech bubble | | `color` | `string` | — | Inherited SVG color prop (not applied internally) | ### `OpenmspLogo` > ⚠️ **Deprecated** — Use icons from `icons-v2-generated` instead. Renders a 97×96 SVG logo composed of three layered paths and a circle. ## Usage Example ```typescript import { OpenmspLogo } from './openmsp-logo'; // Default (black front bubble, white back bubble) // Custom brand colors ``` > **Migration:** Replace usages with the equivalent export from `icons-v2-generated` to stay on the supported icon set.