@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.
28 lines • 1.23 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Sunrise(props) {
const {
color,
size,
customColor,
className,
dataTest,
ariaHidden,
ariaLabel,
reverseOnRtl
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest,
ariaHidden: ariaHidden,
reverseOnRtl: reverseOnRtl,
ariaLabel: ariaLabel
}, React.createElement("path", {
d: "M3.449 14.213a.834.834 0 0 1 0-1.667h1.25a.834.834 0 0 1 0 1.667H3.45zm2.798-5.402l-.885-.885a.834.834 0 0 1 1.18-1.175l.884.88a.834.834 0 1 1-1.179 1.18zm5.748-1.893a.834.834 0 0 1-.834-.834v-1.25a.834.834 0 0 1 1.668 0v1.25a.834.834 0 0 1-.834.834zm6.462 6.462a.834.834 0 0 1 .833-.834h1.25a.834.834 0 1 1 0 1.667h-1.25a.834.834 0 0 1-.833-.833zm-1.303-4.325v.004a.834.834 0 0 1-.59-1.423l.885-.885a.834.834 0 1 1 1.178 1.175l-.883.885a.834.834 0 0 1-.59.244zm-9.898 7.73a5.836 5.836 0 1 1 9.479 0 .834.834 0 1 1-1.353-.974 4.169 4.169 0 1 0-6.773 0 .834.834 0 1 1-1.353.974zm13.91 1.545a.834.834 0 0 1 0 1.667H2.834a.834.834 0 0 1 0-1.667h18.332z"
}));
}