@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.
22 lines • 1.07 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function TicketTrain(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("path", {
d: "M22 4c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H2c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h20zM6 8A1 1 0 1 0 6 6.002 1 1 0 0 0 6 8zm0 4A1 1 0 1 0 6 10.002 1 1 0 0 0 6 12zm0 4A1 1 0 1 0 6 14.002 1 1 0 0 0 6 16zm0 4A1 1 0 1 0 6 18.002 1 1 0 0 0 6 20zm9.53-11.548c-1.89 0-3.781.236-3.781 1.89v4.49c0 .914.74 1.655 1.654 1.655l-.709.709v.236h1.054l.945-.945h1.782l.945.945h.946v-.236l-.71-.71c.914 0 1.655-.74 1.655-1.654v-4.49c0-1.654-1.692-1.89-3.781-1.89zm-2.127 7.09a.709.709 0 1 1 0-1.419.709.709 0 0 1 0 1.418zm1.654-3.31h-2.363v-1.89h2.363v1.89zm.946 0v-1.89h2.363v1.89h-2.363zm1.654 3.31a.709.709 0 1 1 0-1.419.709.709 0 0 1 0 1.418z"
}));
}