Deprecated SVG icon components for the vendor showcase section, providing five inline SVG icons used in marketing/feature display contexts. ## Key Components | Export | Props | Description | |--------|-------|-------------| | `VendorShowcaseMainIcon` | `className?` | Fixed 200×200 decorative showcase icon (pink) | | `TransparentTrustedIcon` | `className?`, `color?`, `size?` | Configurable trust badge icon, defaults: pink `#F357BB`, 42px | | `ModularHellIcon` | `className?`, `size`, `color` | Modular grid icon, defaults: cyan `#5EFAF0`, 38px | | `RapidInnovationIcon` | `className?`, `size`, `color` | Lightning/speed icon, defaults: pink `#F357BB`, 38px | | `LowerTCOIcon` | `className?`, `size`, `color` | Cost reduction icon, defaults: cyan `#5EFAF0`, 42px | > ⚠️ **All exports are deprecated.** Migrate to `icons-v2-generated` instead. ## Usage Example ```typescript // ❌ Deprecated — avoid in new code import { TransparentTrustedIcon } from './vendor-showcase-icons'; // ✅ Preferred — use generated v2 icons import { SomeIcon } from '@/components/icons-v2-generated'; ``` ## Migration Replace each deprecated icon with its equivalent from `icons-v2-generated`. The v2 icons maintain the same `className`, `size`, and `color` prop conventions.