@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.02 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Toilets.js.flow";
export default function Toilets(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="M19 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 1c2.393 0 4 2.009 4 5v2a1 1 0 0 1-1 1h-1v4a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-4h-1a1 1 0 0 1-1-1v-2c0-2.991 1.607-5 4-5zm-8-7h2v20h-2V2zM5 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm3.175 6.533c.219.896.479 1.96.794 3.224A.998.998 0 0 1 8.021 19s-.744.016-1.331.018c-.191.573-.478 1.465-.736 2.283a1 1 0 0 1-1.907 0c-.258-.818-.544-1.71-.736-2.283C2.724 19.016 1.979 19 1.979 19a1.003 1.003 0 0 1-.774-.392 1.003 1.003 0 0 1-.175-.85c.315-1.262.575-2.324.794-3.219C3.05 9.524 3.179 9 4.978 9c1.843 0 1.971.523 3.197 5.533z" />
</OrbitIcon>
);
}