styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
14 lines (13 loc) • 949 B
JavaScript
import { __assign } from "tslib";
import * as React from 'react';
import { StyledIconBase } from '../../StyledIconBase';
export var WeatherNight = 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: "M10.5 20c-.861 0-1.71-.151-2.523-.451l-1.317-.485.89-1.087c1.275-1.56 1.95-3.454 1.95-5.477s-.675-3.917-1.951-5.477l-.89-1.087 1.317-.485A7.275 7.275 0 0110.5 5c4.136 0 7.5 3.364 7.5 7.5S14.636 20 10.5 20zm-.509-2.024A5.507 5.507 0 0016 12.5a5.507 5.507 0 00-6.009-5.476c.991 1.645 1.509 3.511 1.509 5.476s-.518 3.831-1.509 5.476z", key: "k0" })));
});
WeatherNight.displayName = 'WeatherNight';
export var WeatherNightDimensions = { height: 24, width: 24 };