@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 941 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Spa.js.flow";
export default function Spa(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<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" />
</OrbitIcon>
);
}