Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 1x 1x 1x | import Icon, { getCssFillClassName } from '../Icon';
import IconProps from '../IconProps';
const IconRemoveCircleOutline = ({ className, color }: IconProps) => {
const cssFillClassName = getCssFillClassName(color);
return (
<Icon
svg={
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
>
<g clip-path="url(#clip0_433_189)">
<path
className={cssFillClassName}
d="M7 11V13H17V11H7ZM12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.59 20 4 16.41 4 12C4 7.59 7.59 4 12 4C16.41 4 20 7.59 20 12C20 16.41 16.41 20 12 20Z"
fill="black"
/>
</g>
<defs>
<clipPath id="clip0_433_189">
<rect width="24" height="24" fill="white" />
</clipPath>
</defs>
</svg>
}
/>
);
};
export default IconRemoveCircleOutline;
|