@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) • 1.32 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Pool.js.flow";
export default function Pool(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="M22 4h2V2h-2c-1.654 0-3 1.346-3 3v1h-6V5c0-.551.449-1 1-1h2V2h-2c-1.654 0-3 1.346-3 3v9.723c-.595-.348-1-.986-1-1.723H8c0 1.102-.897 2-2 2s-2-.898-2-2H2c0 1.102-.897 2-2 2v2c1.2 0 2.266-.542 3-1.382.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382s2.266-.542 3-1.382c.734.84 1.8 1.382 3 1.382v-2c-1.103 0-2-.898-2-2h-1V5c0-.551.449-1 1-1zm-3 4v2h-6V8h6zm-3 5h-2c0 .737-.405 1.375-1 1.723V12h6v2.723A1.987 1.987 0 0 1 18 15c-1.103 0-2-.898-2-2zm6 5c0 1.103.897 2 2 2v2c-1.2 0-2.266-.542-3-1.382A3.975 3.975 0 0 1 18 22c-1.2 0-2.266-.542-3-1.382A3.975 3.975 0 0 1 12 22c-1.2 0-2.266-.542-3-1.382A3.975 3.975 0 0 1 6 22c-1.2 0-2.266-.542-3-1.382A3.975 3.975 0 0 1 0 22v-2c1.103 0 2-.897 2-2h2c0 1.103.897 2 2 2s2-.897 2-2h2c0 1.103.897 2 2 2s2-.897 2-2h2c0 1.103.897 2 2 2s2-.897 2-2h2z" />
</OrbitIcon>
);
}