UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

14 lines (13 loc) 1.09 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Spanner = 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 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M20.285 7.119a.505.505 0 00-.354-.344.493.493 0 00-.477.126l-2.616 2.557-1.914-.383-.381-1.907 2.645-2.585a.5.5 0 00-.199-.835A4.956 4.956 0 0015.5 3.5c-2.757 0-5 2.243-5 5 0 .323.038.65.118 1.01-.562.463-1.096.862-1.701 1.314-.865.646-1.845 1.377-3.182 2.506A3.557 3.557 0 004.5 16c0 1.93 1.57 3.5 3.5 3.5a3.483 3.483 0 002.662-1.25 58.432 58.432 0 002.544-3.209c.442-.591.832-1.111 1.283-1.66.36.081.688.119 1.011.119 2.757 0 5-2.243 5-5a4.85 4.85 0 00-.215-1.381zM8 17a1 1 0 110-2 1 1 0 110 2z", key: "k0" }))); }); Spanner.displayName = 'Spanner'; export var SpannerDimensions = { height: 24, width: 24 };