@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"
40 lines (31 loc) • 1.65 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = Toilets;
var _react = require("react");
var React = _interopRequireWildcard(_react);
var _Icon = require("../Icon");
var _Icon2 = _interopRequireDefault(_Icon);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
/* eslint-disable */
function Toilets(props) {
var color = props.color,
size = props.size,
customColor = props.customColor,
className = props.className,
dataTest = props.dataTest;
return React.createElement(
_Icon2.default,
{
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" })
);
}