@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
18 lines • 1.31 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Sun(props) {
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: props.size,
color: props.color,
customColor: props.customColor,
className: props.className,
dataTest: props.dataTest,
ariaHidden: props.ariaHidden,
reverseOnRtl: props.reverseOnRtl,
ariaLabel: props.ariaLabel
}, React.createElement("path", {
d: "M12 5.87A6.136 6.136 0 0 1 18.13 12 6.13 6.13 0 1 1 12 5.87zm0 10.592a4.463 4.463 0 1 0 0-8.925 4.463 4.463 0 0 0 0 8.925zM12 4.89a.833.833 0 0 1-.833-.833V2.833a.833.833 0 1 1 1.666 0v1.223a.833.833 0 0 1-.833.833zM5.793 6.972l-.864-.865A.833.833 0 0 1 6.108 4.93l.864.864a.833.833 0 1 1-1.179 1.179zm-1.737 4.195a.833.833 0 1 1 0 1.666H2.833a.833.833 0 1 1 0-1.666h1.223zm1.737 5.861a.833.833 0 1 1 1.179 1.179l-.865.864a.833.833 0 1 1-1.178-1.178l.864-.865zM12 19.111a.833.833 0 0 1 .833.833v1.223a.833.833 0 1 1-1.666 0v-1.223a.833.833 0 0 1 .833-.833zm6.207-2.083l.864.865a.833.833 0 0 1-1.179 1.178l-.864-.864a.833.833 0 0 1 1.179-1.179zm2.96-5.861a.833.833 0 1 1 0 1.666h-1.223a.833.833 0 1 1 0-1.666h1.223zm-3.55-3.951a.833.833 0 0 1-.589-1.423l.865-.864a.833.833 0 0 1 1.178 1.179l-.864.864a.833.833 0 0 1-.59.244z"
}));
}