UNPKG

styled-icons

Version:

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

16 lines (15 loc) 1.09 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var HomeAlt = 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: "M8.003 15c0-1.103.897-2 2-2h4c1.103 0 2 .897 2 2v5h3.001l-.001-8.586-7-7-7 7V20h3v-5z", key: "k0" }), React.createElement("path", { fill: "none", d: "M10.003 15h4v5h-4z", key: "k1" }), React.createElement("path", { d: "M5.003 22h14c1.103 0 2-.897 2-2v-9a.997.997 0 00-.293-.707l-8-8a.999.999 0 00-1.414 0l-8 8a.997.997 0 00-.293.707v9c0 1.103.897 2 2 2zm5-2v-5h4v5h-4zm-5-8.586l7-7 7 7L19.004 20h-3.001v-5c0-1.103-.897-2-2-2h-4c-1.103 0-2 .897-2 2v5h-3v-8.586z", key: "k2" }))); }); HomeAlt.displayName = 'HomeAlt'; export var HomeAltDimensions = { height: 24, width: 24 };