@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.82 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Pool(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.667 18.25a.833.833 0 0 1-.833-.833v-12.5a2.916 2.916 0 1 1 5.832 0 .833.833 0 1 1-1.667 0 1.25 1.25 0 1 0-2.499 0v1.666c0 .23.186.417.417.417h4.582a.416.416 0 0 0 .416-.417V4.917a2.916 2.916 0 1 1 5.832 0 .833.833 0 1 1-1.666 0 1.25 1.25 0 1 0-2.5 0v12.5a.833.833 0 1 1-1.666 0v-.834a.417.417 0 0 0-.416-.416H9.917a.417.417 0 0 0-.417.416v.834a.833.833 0 0 1-.833.833zM9.5 9.083v1.25c0 .23.186.417.417.417h4.582c.23 0 .416-.186.416-.417v-1.25a.417.417 0 0 0-.416-.416H9.917a.417.417 0 0 0-.417.416zm0 3.75v1.25c0 .23.186.417.417.417h4.582c.23 0 .416-.186.416-.417v-1.25a.417.417 0 0 0-.416-.416H9.917a.417.417 0 0 0-.417.416zm11.554 7.451a.842.842 0 0 1 .939.708.833.833 0 0 1-.716.936 3.714 3.714 0 0 1-2.947-.939.416.416 0 0 0-.533 0 4.165 4.165 0 0 1-2.688.978 3.711 3.711 0 0 1-2.536-.975.416.416 0 0 0-.53-.023 4.685 4.685 0 0 1-2.832 1 4.2 4.2 0 0 1-2.732-1.043.416.416 0 0 0-.527-.01A4.563 4.563 0 0 1 3.182 22a3.57 3.57 0 0 1-.458-.03.834.834 0 0 1-.717-.936.833.833 0 0 1 .936-.716c1.398.174 2.654-1.356 2.666-1.37a.867.867 0 0 1 1.365.075 2.887 2.887 0 0 0 2.237 1.282 3.499 3.499 0 0 0 2.522-1.333.871.871 0 0 1 1.427.133 2.27 2.27 0 0 0 1.946 1.2 2.72 2.72 0 0 0 2.228-1.258.87.87 0 0 1 1.432-.024c.006.011.93 1.44 2.288 1.261z"
}));
}