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.

28 lines 1.26 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Smoking(props) { const { color, size, customColor, className, dataTest, ariaHidden, ariaLabel, reverseOnRtl } = props; return React.createElement(OrbitIcon, { viewBox: "0 0 24 24", size: size, color: color, customColor: customColor, className: className, dataTest: dataTest, ariaHidden: ariaHidden, reverseOnRtl: reverseOnRtl, ariaLabel: 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" })); }