@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.36 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 StyledPenSolid = ({
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: "M17.0016 0.905691C18.1734 -0.26609 20.0766 -0.26609 21.2484 0.905691L23.0953 2.75397C24.2672 3.92538 24.2672 5.82663 23.0953 6.9985L20.8266 9.26725L14.7328 3.17444L17.0016 0.905691ZM19.7672 10.3266L8.83593 21.2532C8.34843 21.7407 7.74374 22.1016 7.08281 22.2938L1.44233 23.9532C1.04765 24.0704 0.620615 23.9626 0.329521 23.6298C0.0384175 23.3813 -0.0704169 22.9548 0.0457394 22.5563L1.70483 16.9173C1.89983 16.2563 2.25749 15.6516 2.74546 15.1641L13.6734 4.23475L19.7672 10.3266Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledPenSolid);
const PenSolid = /*#__PURE__*/memo(ForwardRef);
export default PenSolid;