styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 818 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var Wrench = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase, __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" })));
});
Wrench.displayName = 'Wrench';
export var WrenchDimensions = { height: 16, width: 16 };