A deprecated SVG icon component rendering a "logs/clipboard" visual for use in React UIs. ## Key Components | Export | Type | Description | |--------|------|-------------| | `LogsIcon` | `React.FC` | Deprecated SVG logs icon component | | `LogsIconProps` | `interface` | Props for size, color, and className customization | > **⚠️ Deprecated:** Use icons from `icons-v2-generated` instead. ## Props | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | `''` | CSS class for styling | | `size` | `number` | `24` | Width and height in pixels | | `color` | `string` | `'white'` | SVG fill color | ## Usage Example ```typescript import { LogsIcon } from './logs-icon' // Basic usage // Custom size and color ```