A React component that renders an SVG package icon with customizable styling and color properties.
## Key Components
- **`PackageIconProps`** - TypeScript interface extending React's SVG props for type safety
- **`PackageIcon`** - Functional component that renders a package/box icon with three layered paths
## Usage Example
```typescript
import { PackageIcon } from './package-icon'
// Basic usage with defaults (24x24px, white color)
// Custom styling
// With additional SVG props
console.log('Package clicked')}
style={{ cursor: 'pointer' }}
/>
```
The icon uses a 24x24 viewBox with three stroke paths that create a 3D package appearance. Default props include `h-6 w-6` className (6x6 in Tailwind) and white stroke color. All standard SVG props are supported through prop spreading.