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.41 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function ChildFriendly(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: "M2.625 10.126A.625.625 0 0 1 2 9.501a7.917 7.917 0 0 1 7.648-7.5 1.053 1.053 0 0 1 .776.285c.208.197.326.47.326.757v6.458a.625.625 0 0 1-.625.625h-7.5zm3.958 11.875a1.458 1.458 0 1 1 0-2.916 1.458 1.458 0 0 1 0 2.916zm7.01-3.459a.208.208 0 0 1 .145.358 2.295 2.295 0 0 0-.607 1.008.417.417 0 0 1-.4.3H9.185a.417.417 0 0 1-.4-.3 2.303 2.303 0 0 0-.607-1.008.208.208 0 0 1 .145-.358h5.27zm7.574-14.167v-.004a.833.833 0 1 1 0 1.666h-.972a.833.833 0 0 0-.812.643L16.64 18.346a.204.204 0 0 1-.113.141.207.207 0 0 1-.182 0 2.275 2.275 0 0 0-1.01-.236.303.303 0 0 1-.296-.374l.135-.574a.417.417 0 0 0-.405-.512H5.125a.624.624 0 0 1-.548-.326l-2.5-4.583a.624.624 0 0 1 .548-.924h13.71a.417.417 0 0 0 .406-.322l1.02-4.333a2.493 2.493 0 0 1 2.434-1.928h.972zm-5.834 17.626a1.458 1.458 0 1 1 0-2.916 1.458 1.458 0 0 1 0 2.916z" })); }