A React component that renders a minus sign inside a circle as an SVG icon, commonly used for remove or decrement actions in user interfaces. ## Key Components - **MinusCircleIconProps** - Interface extending `React.SVGProps` with optional className - **MinusCircleIcon** - Main export function that renders the SVG icon - **SVG Structure** - 24x24 viewBox with circle outline and centered minus line paths ## Usage Example ```typescript import { MinusCircleIcon } from './minus-circle-icon' // Basic usage // With custom styling // As a button for removing items // With additional SVG props ``` The component accepts all standard SVG props through prop spreading, making it highly customizable. The default size is 24x24 pixels with a gray fill color (`#888888`), but these can be overridden through className or direct SVG props.