Brief description: A deprecated SVG send/paper-plane icon React component with configurable size and fill color. ## Key Components - **`SendIconProps`** — Interface accepting optional `className` (default: `"w-6 h-6"`) and `fill` (default: `"#1A1A1A"`) props - **`SendIcon`** — ⚠️ Deprecated functional component rendering a 24×24 SVG send icon > **Deprecated:** Use icons from `icons-v2-generated` instead. ## Usage Example ```typescript import { SendIcon } from './send-icon'; // Default usage // Custom size and color ``` ## Props | Prop | Type | Default | Description | |------|------|---------|-------------| | `className` | `string` | `"w-6 h-6"` | Tailwind/CSS class for sizing | | `fill` | `string` | `"#1A1A1A"` | SVG fill color |