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 2.18 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Spa(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: "M20.22 15.245a.42.42 0 0 1 .553.022 2.462 2.462 0 0 1 .905 1.776c0 1.106-.985 2.11-2.59 2.862a.42.42 0 0 1-.327.011l-3.283-1.25a.42.42 0 0 0-.532.567l.54 1.193a.42.42 0 0 1-.322.589 21.633 21.633 0 0 1-3.164.23c-5.345 0-9.68-1.885-9.68-4.208a2.462 2.462 0 0 1 .904-1.776.42.42 0 0 1 .555-.016 7.698 7.698 0 0 0 1.67 1.071 8.62 8.62 0 0 0 3.628.746 11.8 11.8 0 0 0 2.82-.352.42.42 0 0 1 .204 0 11.793 11.793 0 0 0 2.821.352 8.62 8.62 0 0 0 3.629-.746 7.698 7.698 0 0 0 1.669-1.07zm1.704-4.921a.803.803 0 0 1-.001.683 8.891 8.891 0 0 1-3.902 4.163 6.95 6.95 0 0 1-2.294.599.21.21 0 0 1-.12-.394 8.586 8.586 0 0 0 2.8-2.393 8.352 8.352 0 0 0 1.347-3.01.42.42 0 0 1 .467-.32c.397.056.79.133 1.178.233a.804.804 0 0 1 .525.439zM5.98 15.17A8.887 8.887 0 0 1 2.08 11.01a.802.802 0 0 1 .52-1.123c.389-.1.782-.177 1.18-.232a.42.42 0 0 1 .466.319 8.352 8.352 0 0 0 1.349 3.008 8.58 8.58 0 0 0 2.801 2.393.21.21 0 0 1-.12.394 6.955 6.955 0 0 1-2.295-.598zM16.252 8.84a8.353 8.353 0 0 0-.216-1.866.42.42 0 0 1 .245-.48 10.587 10.587 0 0 1 1.515-.518.802.802 0 0 1 .999.732 8.88 8.88 0 0 1-1.408 5.527 7.388 7.388 0 0 1-2.468 2.084.21.21 0 0 1-.279-.296 10.07 10.07 0 0 0 1.612-5.183zm-7.173 5.479a7.387 7.387 0 0 1-2.467-2.084 8.88 8.88 0 0 1-1.411-5.527.802.802 0 0 1 .998-.732c.517.134 1.024.307 1.515.518.187.08.29.282.245.48a8.353 8.353 0 0 0-.213 1.866 10.068 10.068 0 0 0 1.612 5.182.21.21 0 0 1-.28.297zm2.92.853a.42.42 0 0 1-.302-.128c-.11-.113-2.688-2.809-2.688-6.204a9.752 9.752 0 0 1 2.34-5.808.869.869 0 0 1 1.3 0 9.749 9.749 0 0 1 2.34 5.808c0 3.395-2.578 6.09-2.688 6.204a.42.42 0 0 1-.302.128z" })); }