@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 StyledInfoRegular = ({
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.4002 21.6H13.0001V8.39968C13.0001 7.73716 12.4626 7.19965 11.8001 7.19965H9.80006C9.13754 7.19965 8.60003 7.73966 8.60003 8.39968C8.60003 9.05969 9.13754 9.5997 9.80006 9.5997H10.6001V21.6H8.20003C7.53751 21.6 7 22.14 7 22.8C7 23.46 7.53751 24 8.20003 24H15.4002C16.0627 24 16.6002 23.4625 16.6002 22.8C16.6002 22.1375 16.0652 21.6 15.4002 21.6ZM11.8001 4.7996C13.1256 4.7996 14.2002 3.72508 14.2002 2.39955C14.2002 1.07402 13.1251 0 11.8001 0C10.4751 0 9.40005 1.07452 9.40005 2.40005C9.40005 3.72558 10.4746 4.7996 11.8001 4.7996Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledInfoRegular);
const InfoRegular = /*#__PURE__*/memo(ForwardRef);
export default InfoRegular;