A reusable React component that renders an SVG send/paper airplane icon commonly used for submit buttons and messaging interfaces.
## Key Components
- **`SendIconProps`** - Interface defining optional className and fill color props
- **`SendIcon`** - Main functional component that renders the SVG icon with customizable styling
## Usage Example
```typescript
import { SendIcon } from './send-icon';
// Basic usage with default styling
// Custom size and color
// In a button component
// Accessible form submit button
```
The component uses Tailwind CSS classes by default (`w-6 h-6`) and a dark fill color (`#1A1A1A`). The SVG is optimized with a 24x24 viewBox and includes two path elements that form the paper airplane shape. The `fill` prop allows for easy color customization to match your design system or theme.