styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 906 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var CloudStorage = 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: "M17 9l-.351.015A5.967 5.967 0 0011 5c-3.309 0-6 2.691-6 6l.001.126A4.007 4.007 0 002 15c0 2.206 1.794 4 4 4h5v-4.586l-1.293 1.293a.997.997 0 01-1.414 0 .999.999 0 010-1.414l2.999-2.999a1 1 0 011.416 0l2.999 2.999a.999.999 0 11-1.414 1.414L13 14.414V19h4c2.757 0 5-2.243 5-5s-2.243-5-5-5z", key: "k0" })));
});
CloudStorage.displayName = 'CloudStorage';
export var CloudStorageDimensions = { height: 24, width: 24 };