A React SVG icon component that renders a minus sign inside a circle, commonly used for decrement actions, removal operations, or collapsing UI elements.
## Key Components
- **MinusCircleIconProps**: Interface extending React's SVGProps with optional className
- **MinusCircleIcon**: Main component function that renders the SVG icon
- **SVG paths**: Two path elements defining the circle outline and minus symbol
## Usage Example
```typescript
import { MinusCircleIcon } from './minus-circle-icon'
// Basic usage
// With custom styling
// As a button with click handler
// With custom fill color
```
The component accepts all standard SVG props through prop spreading, making it highly customizable for different use cases like form controls, list management, or navigation elements.