UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.02 kB
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 StyledMinusSolid = ({ 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: "M21.429 13.5H2.572c-.948 0-1.715-.671-1.715-1.5 0-.83.767-1.5 1.715-1.5h18.857c.948 0 1.714.67 1.714 1.5 0 .829-.766 1.5-1.714 1.5z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledMinusSolid); const MinusSolid = /*#__PURE__*/memo(ForwardRef); export default MinusSolid;