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.87 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Child(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: "M8.875 10.949a1.042 1.042 0 1 1 0 2.084 1.042 1.042 0 0 1 0-2.084zm6.25 0a1.042 1.042 0 1 1 0 2.084 1.042 1.042 0 0 1 0-2.084zm3.958 3.957a1.25 1.25 0 0 0-.017-2.5h-.004a.823.823 0 0 1-.812-.832v-1.25a6.241 6.241 0 0 0-3.144-5.413.217.217 0 0 0-.13-.023.21.21 0 0 0-.177.236 3.253 3.253 0 0 1-.011 1.297 2.9 2.9 0 0 1-2.764 2.237 2.812 2.812 0 0 1-2.28-1.38.834.834 0 0 1 .385-1.114.835.835 0 0 1 1.114.386c.333.436.943.546 1.407.255a.213.213 0 0 0 .022-.016 1.405 1.405 0 0 0 .257-1.972 1.65 1.65 0 0 0-1.048-.726.167.167 0 0 1-.018-.008 6.248 6.248 0 0 0-6.113 6.241v1.26a.823.823 0 0 1-.816.83 1.248 1.248 0 1 0-.017 2.499h.311a.833.833 0 0 1 .797.588c1.235 4.01 6.15 6.021 10.417 2.832a4.304 4.304 0 0 0 1.51-2.749.834.834 0 0 1 .819-.678h.312zm.834-4.189a.203.203 0 0 0 .138.19 2.917 2.917 0 0 1 1.918 2.35 2.917 2.917 0 0 1-2.492 3.288.195.195 0 0 0-.157.12 7.916 7.916 0 0 1-4.319 4.318 7.918 7.918 0 0 1-10.33-4.318.195.195 0 0 0-.156-.12 2.917 2.917 0 0 1-2.32-1.833 2.916 2.916 0 0 1 1.663-3.774.436.436 0 0 0 .221-.357v-.257a7.925 7.925 0 0 1 8.46-7.896 8.103 8.103 0 0 1 7.374 8.175v.114zm-6.383 4.475a.815.815 0 0 1 .07-.062.832.832 0 0 1 1.17.142.832.832 0 0 1-.142 1.17 4.085 4.085 0 0 1-5.265 0 .833.833 0 0 1-.07-1.108.833.833 0 0 1 1.169-.142 2.514 2.514 0 0 0 3.068 0z" })); }