A deprecated SVG icon component that renders a log-out/sign-out symbol. ## Key Components **`LogOutIcon`** — A React functional component rendering a 24×24 SVG logout icon (door with arrow pointing right). | Prop | Type | Default | Description | |------|------|---------|-------------| | `color` | `string` | `'white'` | Stroke color of the icon | | `size` | `number` | `20` | Width and height in pixels | | `className` | `string` | `''` | Additional CSS classes | > ⚠️ **Deprecated** — Use icons from `icons-v2-generated` instead. ## Usage Example ```typescript import { LogOutIcon } from './log-out-icon' // Default usage // Custom size and color ```