UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.62 kB
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 StyledPenRegular = ({ 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: "M2.74546 15.1641L17.0016 0.905691C18.1734 -0.26609 20.0766 -0.26609 21.2484 0.905691L23.0953 2.75397C23.2406 2.90022 23.3672 3.05819 23.4797 3.2246C24.2484 4.38897 24.1219 5.97194 23.0953 6.9985L8.83593 21.2532C8.77499 21.3141 8.71406 21.3329 8.64843 21.4313C8.19843 21.8298 7.66406 22.0829 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.1641ZM3.86343 17.5501L2.78624 21.2157L6.44999 20.1376C6.70781 20.0485 7.02187 19.8844 7.24687 19.6641L17.9531 8.95319L15.0047 6.00475L4.3364 16.7532C4.30874 16.7813 4.28202 16.8094 4.25624 16.8423C4.0753 17.0438 3.94077 17.2876 3.86343 17.5501Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledPenRegular); const PenRegular = /*#__PURE__*/memo(ForwardRef); export default PenRegular;