@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 • 919 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Spa(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: "M15.906 7.516c2.345-.869 4.872-.915 4.872-.915s-.084 5.113-2.514 7.543c-1.305 1.305-3.016 1.567-4.325 1.534 1.215-1.16 2.521-2.95 2.521-5.312 0-.953-.22-1.918-.554-2.85zm-8.034 0c-.334.932-.554 1.897-.554 2.85 0 2.362 1.305 4.152 2.521 5.312-1.309.033-3.021-.229-4.325-1.534C3.084 11.714 3 6.601 3 6.601s2.527.046 4.872.915zm7.573 2.596c0 2.237-1.504 3.817-2.556 4.651v5.46h-2v-5.46c-1.052-.834-2.556-2.414-2.556-4.651C8.333 6.675 11.889 3 11.889 3s3.556 3.675 3.556 7.112z"
}));
}