A deprecated React SVG icon component rendering a folder with a shield overlay, intended for security-related UI contexts. ## Key Components ### `FolderShieldIcon` A functional React component that renders an inline SVG icon combining a folder shape with a shield emblem. **Props (`FolderShieldIconProps`):** | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | `''` | CSS class for styling | | `size` | `number` | `24` | Width and height in pixels | | `color` | `string` | `'white'` | SVG stroke color | > ⚠️ **Deprecated** — This component is marked for removal. Use equivalent icons from `icons-v2-generated` instead. ## Usage Example ```typescript import { FolderShieldIcon } from './folder-shield-icon' // Basic usage // Custom size and color ``` ## Migration Replace usages with the generated icon library: ```typescript // ❌ Deprecated import { FolderShieldIcon } from './folder-shield-icon' // ✅ Preferred import { FolderShieldIcon } from '@/icons-v2-generated' ```