UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.35 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 StyledPlusSolid = ({ 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.2854 12.1421C23.2854 13.0898 22.5177 13.8569 21.5711 13.8569H13.8568V21.5712C13.8568 22.5189 13.0892 23.285 12.1426 23.285C11.1959 23.285 10.4283 22.5189 10.4283 21.5712V13.8569H2.71398C1.76737 13.8569 0.999695 13.0898 0.999695 12.1421C0.999695 11.1944 1.76737 10.4284 2.71398 10.4284H10.4283V2.71409C10.4283 1.76641 11.1959 0.999268 12.1426 0.999268C13.0892 0.999268 13.8568 1.76641 13.8568 2.71409V10.4284H21.5711C22.5193 10.4278 23.2854 11.1939 23.2854 12.1421Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledPlusSolid); const PlusSolid = /*#__PURE__*/memo(ForwardRef); export default PlusSolid;