@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.18 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Ticket(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: "M21.333 10.772a1.25 1.25 0 0 0 0 2.45.833.833 0 0 1 .667.816v3.375c0 .69-.56 1.25-1.25 1.25H3.25A1.25 1.25 0 0 1 2 17.413v-3.375c0-.396.279-.737.667-.816a1.25 1.25 0 0 0 0-2.45A.833.833 0 0 1 2 9.955V6.58c0-.69.56-1.25 1.25-1.25h17.5c.69 0 1.25.56 1.25 1.25v3.375a.833.833 0 0 1-.667.817zM6.83 16.816a.83.83 0 1 0 0-1.66.83.83 0 0 0 0 1.66zm0-2.66a.83.83 0 1 0 0-1.66.83.83 0 0 0 0 1.66zm0-2.66a.83.83 0 1 0 0-1.66.83.83 0 0 0 0 1.66zm0-2.66a.83.83 0 1 0 0-1.66.83.83 0 0 0 0 1.66zm3.5.974a.83.83 0 0 0 0 1.66h6.34a.83.83 0 0 0 0-1.66h-6.34zm0 2.66a.83.83 0 0 0 0 1.66h3.34a.83.83 0 0 0 0-1.66h-3.34z"
}));
}