UNPKG

styled-icons

Version:

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

15 lines (14 loc) 1.12 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var HomeGear = 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", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }), React.createElement("path", { d: "M20 20a1 1 0 01-1 1H5a1 1 0 01-1-1v-9H1l10.327-9.388a1 1 0 011.346 0L23 11h-3v9zM8.592 13.808l-.991.572 1 1.733.993-.573a3.5 3.5 0 001.405.811v1.145h2.002V16.35a3.5 3.5 0 001.405-.81l.992.572L16.4 14.38l-.991-.572a3.504 3.504 0 000-1.62l.991-.573-1-1.733-.993.573A3.5 3.5 0 0013 9.645V8.5h-2.002v1.144a3.5 3.5 0 00-1.405.811l-.992-.573L7.6 11.616l.991.572a3.504 3.504 0 000 1.62zm3.408.69a1.5 1.5 0 11-.002-3.001 1.5 1.5 0 01.002 3z", key: "k1" }))); }); HomeGear.displayName = 'HomeGear'; export var HomeGearDimensions = { height: 24, width: 24 };