@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.23 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 StyledCircleMinusRegular = ({
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: "M16.125 10.875c.623 0 1.125.502 1.125 1.125s-.502 1.125-1.125 1.125h-8.25A1.122 1.122 0 016.75 12c0-.623.502-1.125 1.125-1.125h8.25zM24 12c0 6.628-5.372 12-12 12S0 18.628 0 12 5.372 0 12 0s12 5.372 12 12zM12 2.25A9.749 9.749 0 002.25 12 9.749 9.749 0 0012 21.75 9.749 9.749 0 0021.75 12 9.749 9.749 0 0012 2.25z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCircleMinusRegular);
const CircleMinusRegular = /*#__PURE__*/memo(ForwardRef);
export default CircleMinusRegular;