styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 941 B
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.Wrench = 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 16 16" }, props, { ref: ref }),
React.createElement("path", { d: "M15.671 12.779L8.475 6.611A4.5 4.5 0 003.193.193l2.6 2.6a1.003 1.003 0 010 1.414L4.207 5.793a1.003 1.003 0 01-1.414 0l-2.6-2.6a4.5 4.5 0 006.418 5.282l6.168 7.196a.914.914 0 001.358.052l1.586-1.586a.914.914 0 00-.052-1.358z", key: "k0" })));
});
exports.Wrench.displayName = 'Wrench';
exports.WrenchDimensions = { height: 16, width: 16 };
;