@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.49 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function TicketOutline(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: "M20.583 9.174V7.311a.563.563 0 0 0-.563-.564H3.986a.568.568 0 0 0-.568.569V9.17c0 .216.13.4.318.508a2.68 2.68 0 0 1 1.35 2.319c0 .976-.536 1.854-1.35 2.319a.59.59 0 0 0-.318.507v1.854a.57.57 0 0 0 .569.569h16.026a.57.57 0 0 0 .57-.569v-1.854a.59.59 0 0 0-.318-.507 2.678 2.678 0 0 1-1.349-2.319 2.68 2.68 0 0 1 1.352-2.321.585.585 0 0 0 .315-.502zm.726 1.604a1.248 1.248 0 0 0 0 2.438c.396.09.691.416.691.822v3.375a1.25 1.25 0 0 1-1.25 1.25H3.25a1.25 1.25 0 0 1-.883-.366A1.247 1.247 0 0 1 2 17.413v-3.375c0-.406.296-.732.693-.822a1.249 1.249 0 0 0 0-2.438C2.296 10.689 2 10.361 2 9.955V6.58c0-.69.561-1.25 1.25-1.25h17.5c.691 0 1.25.559 1.25 1.578v3.047c0 .406-.295.734-.691.823zM6.83 16.816a.83.83 0 1 1 0-1.66.83.83 0 0 1 0 1.66zm0-2.66a.83.83 0 1 1 0-1.66.83.83 0 0 1 0 1.66zm0-2.66a.83.83 0 1 1 0-1.66.83.83 0 0 1 0 1.66zm0-2.66a.83.83 0 1 1 0-1.66.83.83 0 0 1 0 1.66zm3.5.974h6.34a.83.83 0 0 1 0 1.66h-6.34a.83.83 0 0 1 0-1.66zm0 2.66h3.34a.83.83 0 0 1 0 1.66h-3.34a.83.83 0 0 1 0-1.66z"
}));
}