@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 • 975 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Nonstop(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: "M2.571 7.571a2.575 2.575 0 0 1 2.572 2.571c0 1.267-1.267 3.028-2.335 4.286h2.335v1.714H.857a.857.857 0 0 1-.606-1.463c1.528-1.529 3.177-3.699 3.177-4.537a.858.858 0 0 0-1.714 0V11H0v-.858a2.574 2.574 0 0 1 2.571-2.57zm7.714.858v4.286h.858v1.714h-.858v1.715H8.571v-1.715h-2.57a.856.856 0 0 1-.714-1.332l3.428-5.143a.856.856 0 0 1 1.57.475zm-1.714 4.286V11.26l-.97 1.454h.97zm15.281-4.766a.857.857 0 0 1 .087.8l-2.96 7.394h-1.845l2.742-6.857h-3.02V7.573h4.286c.285 0 .55.14.71.376zM11.995 17L16.11 6.715h1.847L13.841 17h-1.846z"
}));
}