@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.43 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 StyledInfoSolid = ({
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: "M15.0152 20.839H13.4122V9.61773C13.4122 8.73155 12.6943 8.0147 11.8091 8.0147H8.60304C7.71786 8.0147 7 8.73155 7 9.61773C7 10.5039 7.71786 11.1757 8.60304 11.1757H10.2061V20.7939H8.60304C7.71786 20.7939 7 21.5108 7 22.397C7 23.2831 7.71786 24 8.60304 24H15.0152C15.9004 24 16.6182 23.2831 16.6182 22.397C16.6182 21.5108 15.9019 20.839 15.0152 20.839ZM11.8091 4.80862C13.1371 4.80862 14.2137 3.73208 14.2137 2.40406C14.2137 1.07604 13.1366 0 11.8091 0C10.4816 0 9.40456 1.07654 9.40456 2.40456C9.40456 3.73258 10.4811 4.80862 11.8091 4.80862Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledInfoSolid);
const InfoSolid = /*#__PURE__*/memo(ForwardRef);
export default InfoSolid;