UNPKG

styled-icons

Version:

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

24 lines (23 loc) 1.31 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Sunset = React.forwardRef(function (props, ref) { var attrs = { "fill": "none", "xmlns": "http://www.w3.org/2000/svg", "stroke": "currentColor", "strokeLinecap": "round", "strokeLinejoin": "round", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M17 18a5 5 0 00-10 0", key: "k0" }), React.createElement("line", { x1: 12, x2: 12, y1: 9, y2: 2, key: "k1" }), React.createElement("line", { x1: 4.22, x2: 5.64, y1: 10.22, y2: 11.64, key: "k2" }), React.createElement("line", { x1: 1, x2: 3, y1: 18, y2: 18, key: "k3" }), React.createElement("line", { x1: 21, x2: 23, y1: 18, y2: 18, key: "k4" }), React.createElement("line", { x1: 18.36, x2: 19.78, y1: 11.64, y2: 10.22, key: "k5" }), React.createElement("line", { x1: 23, x2: 1, y1: 22, y2: 22, key: "k6" }), React.createElement("polyline", { points: "16 5 12 9 8 5", key: "k7" }))); }); Sunset.displayName = 'Sunset'; export var SunsetDimensions = { height: 24, width: 24 };