@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.73 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Subway(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: "M7.917 11.751c1.083-.25 2.083-.333 3.166-.417a.18.18 0 0 0 .167-.166V7.25c0-.167-.083-.25-.167-.25H9.5c-1 0-1.833.833-1.833 1.833v2.75c.083.167.166.167.25.167zm1 1.75H7.833a.359.359 0 0 0-.333.333v.75c0 .167.167.334.333.334h1.084c.416 0 .75-.334.75-.75 0-.334-.334-.667-.75-.667zm4-2.167c1.083 0 2.166.167 3.166.417a.18.18 0 0 0 .167-.167v-2.75c.083-1-.75-1.833-1.75-1.833h-1.583a.18.18 0 0 0-.167.167v4a.18.18 0 0 0 .167.166zm-1.084-9.333C6.333 2.084 2 6.835 2 12.335v8.833c0 .5.333.833.833.833h2.334c0-.083.083-.167.083-.25l1.833-2.667c.25-.333.667-.416 1-.166.334.25.417.667.167 1L6.833 22h10.334l-1.417-2.167c-.25-.333-.167-.75.167-1 .333-.25.75-.166 1 .167l1.833 2.667c.083.083.083.166.083.25h2.334c.5 0 .833-.334.833-.834v-9.083c0-5.583-4.583-10.083-10.167-10zm5.917 14.333c0 .75-.5 1.417-1.25 1.584-1.5.333-3 .5-4.5.583-1.5-.083-3-.25-4.417-.583-.75-.167-1.333-.833-1.333-1.583v-7.5c0-1.75 1.417-3.25 3.25-3.25h5c1.75 0 3.25 1.416 3.25 3.25v7.5zm-4.333-.833h-2.834a.18.18 0 0 0-.166.167V17a.18.18 0 0 0 .166.167c.5.083 1 .083 1.417.083.5 0 1-.083 1.417-.083a.18.18 0 0 0 .166-.167v-1.333a.18.18 0 0 0-.166-.167zm2.75-2h-1.084a.747.747 0 0 0-.75.75c0 .417.334.75.75.75h1.084a.358.358 0 0 0 .333-.333v-.75c0-.25-.167-.417-.333-.417z"
}));
}