@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.47 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function SmokingOff(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: "M5.833 17H5.75c-.667 0-1.25-.583-1.25-1.25v-3.333c0-.667.583-1.25 1.25-1.25h5.917l8.916-8.917a.806.806 0 0 1 1.167 0 .806.806 0 0 1 0 1.167L3.417 21.75c-.25.333-.834.333-1.167 0a.806.806 0 0 1 0-1.167L5.833 17zM7.5 15.333l2.5-2.5H6.583c-.25 0-.416.167-.416.417v1.667c0 .25.166.416.416.416H7.5zm-4.25-3.75c.25 0 .417.167.417.417v4.167c0 .25-.167.416-.417.416-.667 0-1.25-.583-1.25-1.25v-2.5c0-.666.583-1.25 1.25-1.25zm5.417-2.5H4.583c-.25 0-.416.167-.416.417v.667c0 .416-.25.666-.667.666a.657.657 0 0 1-.667-.666V9.5c0-1.583 1.334-2.917 2.917-2.917h1.417a.458.458 0 0 0 .416-.25c.25-.583.834-1 1.5-1h4.167c.667 0 1.25.584 1.25 1.25 0 .667-.583 1.25-1.25 1.25h-2.667a.458.458 0 0 0-.416.25c-.25.584-.834 1-1.5 1zm12.083 2.084c.667 0 1.25.583 1.25 1.25v3.333c0 .667-.583 1.25-1.25 1.25H9.833l1.667-1.667h4.667c.25 0 .416-.166.416-.416V13.25c0-.25-.166-.417-.416-.417H14l1.667-1.666h5.083z"
}));
}