@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.12 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledCircleMinusSolid = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M0 12C0 5.372 5.372 0 12 0s12 5.372 12 12-5.372 12-12 12S0 18.628 0 12zm7.875-1.125c-.623 0-1.125.502-1.125 1.125s.502 1.125 1.125 1.125h8.25c.623 0 1.125-.502 1.125-1.125s-.502-1.125-1.125-1.125h-8.25z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCircleMinusSolid);
const CircleMinusSolid = /*#__PURE__*/memo(ForwardRef);
export default CircleMinusSolid;