@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.73 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 StyledUserPenSolid = ({
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: "M8.36625 11.6C11.0175 11.6 13.1663 9.45088 13.1663 6.8C13.1663 4.14913 11.0175 2 8.36625 2C5.74875 2 3.6 4.14913 3.6 6.8C3.6 9.45088 5.74875 11.6 8.36625 11.6ZM10.3013 13.4H6.49875C2.91038 13.4 0 16.3138 0 19.9025C0 20.6187 0.582 21.2 1.29975 21.2H12.0398C11.993 20.9926 11.9861 20.7759 12.0291 20.561L12.5646 17.8831C12.6375 17.5185 12.815 17.1871 13.0776 16.9246L14.7921 15.2101C13.6237 14.09 12.045 13.4 10.3013 13.4ZM13.9275 17.7725C13.8332 17.8667 13.769 17.9868 13.7429 18.1176L13.2074 20.7955C13.1602 21.0313 13.3683 21.2395 13.6045 21.1926L16.2827 20.6567C16.4133 20.6305 16.5333 20.5665 16.6275 20.4722L21.3263 15.7734L18.6259 13.073L13.9275 17.7725ZM23.6063 11.5887L22.815 10.7971C22.2878 10.2699 21.4331 10.2699 20.9059 10.7971L19.476 12.2274L22.1764 14.9278L23.6063 13.4979C24.1313 12.9688 24.1313 12.1138 23.6063 11.5887Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUserPenSolid);
const UserPenSolid = /*#__PURE__*/memo(ForwardRef);
export default UserPenSolid;