@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.05 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 StyledUserPenRegular = ({
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: "M18.6263 13.0737L21.3266 15.7741L16.6279 20.4729C16.5336 20.5672 16.4136 20.6312 16.2831 20.6575L13.6048 21.1933C13.3687 21.2405 13.1604 21.0322 13.2077 20.7962L13.7432 18.1183C13.7693 17.9875 13.8336 17.8674 13.9278 17.7732L18.6263 13.0737ZM23.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.5887ZM13.5038 21.2C13.5259 21.2 13.5483 21.1978 13.5711 21.1933C13.5269 21.2021 13.4859 21.1942 13.4451 21.1866C13.4963 21.1888 13.515 21.2 13.5038 21.2ZM3.6 6.8C3.6 4.14913 5.74913 2 8.36625 2C10.9834 2 13.1663 4.14913 13.1663 6.8C13.1663 9.45088 11.0171 11.6 8.36625 11.6C5.71538 11.6 3.6 9.45125 3.6 6.8ZM5.4 6.8C5.4 8.45413 6.74588 9.8 8.4 9.8C10.0541 9.8 11.4 8.45413 11.4 6.8C11.4 5.14588 10.0541 3.8 8.4 3.8C6.74588 3.8 5.4 5.14588 5.4 6.8ZM12.2288 19.4H1.8375C2.13338 17.0338 4.155 15.2 6.6 15.2H10.2C11.4735 15.2 12.6251 15.7059 13.485 16.5178L14.7638 15.239C13.5788 14.1013 11.9738 13.4 10.2 13.4H6.6C2.955 13.4 0 16.355 0 20C0 20.6626 0.537375 21.2 1.2 21.2H12.0413C11.9945 20.9926 11.9876 20.7759 12.0306 20.561L12.2288 19.4Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUserPenRegular);
const UserPenRegular = /*#__PURE__*/memo(ForwardRef);
export default UserPenRegular;