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) 903 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; import type { Props } from "./Sun.js.flow"; export default function Sun(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="M7.224 5.918L5.592 4.286 4.327 5.55l1.632 1.633 1.265-1.266zm-2.49 5.143H2v1.796h2.735v-1.796zM12.899 2h-1.796v2.694h1.796V2zm6.775 3.551l-1.265-1.265-1.632 1.632 1.265 1.266 1.632-1.633zM16.776 18l1.591 1.633 1.306-1.266-1.632-1.632L16.776 18zm2.49-6.939v1.796H22v-1.796h-2.735zM12 6.49a5.47 5.47 0 1 0 0 10.94 5.47 5.47 0 0 0 0-10.94zm-.898 15.428h1.796v-2.694h-1.796v2.694zm-6.775-3.55l1.265 1.265L7.224 18 5.96 16.735l-1.632 1.632z" /> </OrbitIcon> ); }