sebikostudio-icons
Version:
A collection of icon components
34 lines • 1.44 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 EraserIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "eraser, rubber, remover",
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: "M2.79903 11.6257C2.40032 11.227 2.40032 10.5806 2.79903 10.1819L11.1819 1.79903C11.5806 1.40032 12.227 1.40032 12.6257 1.79903L18.201 7.37426C18.5997 7.77297 18.5997 8.4194 18.201 8.81811L9.81811 17.201C9.4194 17.5997 8.77297 17.5997 8.37426 17.201L2.79903 11.6257Z",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M5.5 7.5L12.5 14.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
}), /*#__PURE__*/React.createElement("path", {
d: "M3.5 17.5H16.5",
stroke: "currentColor",
strokeLinecap: "round",
strokeLinejoin: "round"
})));
export default EraserIcon;