sebikostudio-icons
Version:
A collection of icon components
34 lines • 1.51 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const PenIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "pen, vector tool, tool, drawing",
style: style,
width: "20",
height: "20",
viewBox: "0 0 20 20",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M17.5 2.5L10.5 9.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M10.4142 12.4142C9.63317 13.1953 8.36683 13.1953 7.58579 12.4142C6.80474 11.6332 6.80474 10.3668 7.58579 9.58579C8.36683 8.80474 9.63317 8.80474 10.4142 9.58579C11.1953 10.3668 11.1953 11.6332 10.4142 12.4142Z",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M4.5 6.5C6.5 4.5 17.5 2.5 17.5 2.5C17.5 2.5 15.5 13.5 13.5 15.5C11.5 17.5 7.5 16.5 7.5 16.5L5.5 18.5L1.5 14.5L3.5 12.5C3.5 12.5 2.5 8.5 4.5 6.5Z",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
})));
export default PenIcon;