styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 1.16 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Eraser = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { fill: "none", d: "M10.224 18a.848.848 0 01.069-.079l4.557-4.557-4.95-4.95-.744.743-4.748 4.837L8.413 18h1.811z", key: "k0" }),
React.createElement("path", { d: "M12.485 3l-4.75 4.749-4.754 4.843a2.005 2.005 0 00.012 2.815l4.299 4.299a.992.992 0 00.707.294H20v-2h-6.958l7.222-7.222c.78-.78.78-2.048 0-2.828L15.313 3a2.001 2.001 0 00-2.828 0zM8.413 18l-4.005-4.006 4.748-4.837.743-.743 4.95 4.95-4.557 4.557a.848.848 0 00-.069.079h-1.81z", key: "k1" })));
});
exports.Eraser.displayName = 'Eraser';
exports.EraserDimensions = { height: 24, width: 24 };
;