A deprecated React SVG icon component rendering an SSO (Single Sign-On) configuration symbol with customizable size, color, and className props. ## Key Components ### `SSOConfigurationIconProps` | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | `''` | Additional CSS classes | | `size` | `number` | `24` | Width and height in pixels | | `color` | `string` | `'white'` | SVG fill color | ### `SSOConfigurationIcon` Exported function component that renders a 24×24 viewBox SVG depicting an SSO configuration lock/key interface icon. > ⚠️ **Deprecated** — This component is marked as deprecated. Use icons from `icons-v2-generated` instead. ## Usage Example ```typescript import { SSOConfigurationIcon } from './sso-configuration-icon' // Default usage // Custom size and color ``` ## Migration Replace usages with the equivalent from the generated icon library: ```typescript // ❌ Deprecated import { SSOConfigurationIcon } from './sso-configuration-icon' // ✅ Preferred import { SSOConfigurationIcon } from '@/components/icons-v2-generated' ```