styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
16 lines (15 loc) • 1.1 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.WeatherCloudy = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M17 19H6c-2.206 0-4-1.794-4-4a4.007 4.007 0 013.001-3.874L5 11c0-3.309 2.691-6 6-6a5.969 5.969 0 015.65 4.015C19.592 8.769 22 11.128 22 14c0 2.757-2.243 5-5 5zM5.905 12.994C4.897 13 4 13.897 4 15s.897 2 2 2h11c1.654 0 3-1.346 3-3s-1.346-3-3-3c-.243 0-.5.041-.81.13l-1.075.307-.186-1.103A3.978 3.978 0 0011 7a4.004 4.004 0 00-3.918 4.811l.244 1.199-1.421-.016z", key: "k0" })));
});
exports.WeatherCloudy.displayName = 'WeatherCloudy';
exports.WeatherCloudyDimensions = { height: 24, width: 24 };
;