UNPKG

@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 994 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Toilets(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: "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" })); }