UNPKG

styled-icons

Version:

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

15 lines (14 loc) 860 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Cloud = 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: "M17 21H7A6 6 0 015.008 9.339a7 7 0 1113.984 0A6 6 0 0117 21zm0-12a5 5 0 10-9.994.243l.07 1.488-1.404.494A4.002 4.002 0 007 19h10a4 4 0 10-3.796-5.265l-1.898-.633A6.003 6.003 0 0117 9z", key: "k1" }))); }); Cloud.displayName = 'Cloud'; export var CloudDimensions = { height: 24, width: 24 };