UNPKG

@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.44 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Nonstop(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: "M6.001 5.81l.134.118 1.77 1.769c.772.773.81 2.003.115 2.822l-.116.125-1.322 1.322A39.096 39.096 0 0 0 10.83 16.3l.577.494 1.321-1.32a2.083 2.083 0 0 1 2.812-.125l.135.124 1.764 1.769c.773.773.811 2.003.116 2.822l-.116.126-.97.97a2.956 2.956 0 0 1-3.667.37 39.133 39.133 0 0 1-10.95-10.961 2.926 2.926 0 0 1 .233-3.525l.134-.144.97-.97a2.13 2.13 0 0 1 2.812-.119zm6.44-.796a2.787 2.787 0 0 1 3.01 2.22c.316 1.555-.556 2.324-1.326 3l-1.154 1.02h2.092a.834.834 0 0 1 0 1.668h-4.296a.833.833 0 0 1-.552-1.459l2.81-2.481c.766-.674.906-.856.792-1.418a1.12 1.12 0 0 0-2.217.224.834.834 0 0 1-1.667.002 2.788 2.788 0 0 1 2.507-2.776zm8.949.734l.006.105V9.67h.385a.85.85 0 0 1 .107 1.693l-.107.007h-.385v.7a.85.85 0 0 1-1.693.107l-.007-.106v-.701h-3.062a.85.85 0 0 1-.714-1.311l.063-.085 3.911-4.667c.487-.58 1.413-.278 1.496.44zM19.696 8.19l-1.24 1.479h1.24V8.19z" })); }