@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.04 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 StyledMinusRegular = ({
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: "M23.143 12c0 .623-.573 1.125-1.286 1.125H2.143c-.71 0-1.286-.503-1.286-1.124 0-.62.576-1.126 1.286-1.126h19.714c.713 0 1.286.506 1.286 1.125z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledMinusRegular);
const MinusRegular = /*#__PURE__*/memo(ForwardRef);
export default MinusRegular;