A deprecated React SVG icon component rendering a shield with a checkmark, used for security or verification UI elements.
## Key Components
- **`ShieldCheckIconProps`** — Interface defining optional props: `className`, `size`, `color`, and `strokeWidth`
- **`ShieldCheckIcon`** — Named export rendering a 24×24 SVG shield-check icon with configurable appearance
> ⚠️ **Deprecated:** This component is deprecated. Use icons from `icons-v2-generated` instead.
## Usage Example
```typescript
import { ShieldCheckIcon } from './shield-check-icon'
// Default usage
// Custom size and color
```
## Props
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `className` | `string` | `''` | CSS class for styling |
| `size` | `number` | `24` | Width and height in pixels |
| `color` | `string` | `'white'` | Stroke color of the icon |
| `strokeWidth` | `number` | `1.5` | Stroke thickness |