@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.
18 lines • 1.17 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Smoking(props) {
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: props.size,
color: props.color,
customColor: props.customColor,
className: props.className,
dataTest: props.dataTest,
ariaHidden: props.ariaHidden,
reverseOnRtl: props.reverseOnRtl,
ariaLabel: props.ariaLabel
}, React.createElement("path", {
d: "M20.75 17h-15c-.69 0-1.25-.56-1.25-1.25v-3.333c0-.69.56-1.25 1.25-1.25h15c.69 0 1.25.56 1.25 1.25v3.333c0 .69-.56 1.25-1.25 1.25zM6.167 13.25v1.667c0 .23.186.416.416.416h9.584a.417.417 0 0 0 .416-.416V13.25a.417.417 0 0 0-.416-.417H6.583a.417.417 0 0 0-.416.417zM3.25 11.583a.417.417 0 0 1 .417.417v4.167a.417.417 0 0 1-.417.416c-.69 0-1.25-.56-1.25-1.25v-2.5c0-.69.56-1.25 1.25-1.25zm5.417-2.5H4.5a.417.417 0 0 0-.417.417v.625a.625.625 0 1 1-1.25 0V9.5A2.917 2.917 0 0 1 5.75 6.583h1.424a.417.417 0 0 0 .382-.25c.265-.607.865-1 1.527-1h4.167a1.25 1.25 0 0 1 0 2.5h-2.674a.417.417 0 0 0-.382.25c-.265.608-.865 1-1.527 1zM17 7a1.25 1.25 0 1 1 0-2.5h1.25a1.25 1.25 0 1 1 0 2.5H17z"
}));
}