A deprecated SVG React component that renders the "OpenFrame" wordmark as inline SVG with a customizable text color. ## Key Components ### `OpenFrameText` An SVG icon component rendering the full "OpenFrame" text logo at 87×15px. **Props** (extends `React.SVGProps`): | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | — | CSS class for the SVG element | | `textColor` | `string` | `'#1A1A1A'` | Fill color for all letterform paths | > ⚠️ **Deprecated** — Use icons from `icons-v2-generated` instead. ## Usage Example ```typescript import { OpenFrameText } from './openframe-text'; // Default dark text // White wordmark for dark backgrounds // Custom brand color ``` ## Notes - The component spreads all standard `SVGProps`, so attributes like `style`, `aria-label`, `onClick`, etc. are fully supported. - The `--fill-0` CSS custom property is set to `currentColor`, enabling color overrides via CSS `color` if needed alongside `textColor`. - The viewBox is fixed at `0 0 87 15`; scale via CSS `width`/`height` rather than the SVG attributes directly.