@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 • 825 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Sunrise(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: "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"
}));
}