UNPKG

@kiwicom/orbit-components

Version:

<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"

21 lines (19 loc) 851 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; import type { Props } from "./Sunrise.js.flow"; export default function Sunrise(props: Props) { const { color, size, customColor, className, dataTest } = props; return ( <OrbitIcon viewBox="0 0 24 24" size={size} color={color} customColor={customColor} className={className} dataTest={dataTest} > <path d="M16.024 13H7.976v.916H6.104V13c0-3.227 2.669-5.896 5.896-5.896S17.857 9.773 17.857 13v.916h-1.833V13zM2 13.916v-1.872h2.67v1.872H2zm2.27-7.37L5.547 5.23l1.912 1.912-1.315 1.315-1.872-1.912zM11.085 3h1.832v2.67h-1.832V3zm7.33 2.231l1.315 1.315-1.872 1.912-1.315-1.315 1.872-1.912zM22 12.044v1.872h-2.71v-1.872H22zm-20 5.18V15.35h20v1.872H2zm2.47 3.306v-1.873h15.06v1.873H4.47z" /> </OrbitIcon> ); }