@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.
22 lines • 881 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Sun(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("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"
}));
}