@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 • 912 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Passenger(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: "M21.083 17.577c-.583-1.25-2.666-2-5.583-3.084-.583-.166-.917-.25-1.083-.75-.167-.417-.167-.916.166-1.333 1.167-1.25 1.75-3.083 1.75-5.5 0-3.083-2.167-4.5-4.333-4.5-2.167 0-4.334 1.417-4.334 4.583 0 2.417.584 4.25 1.666 5.5.251.416.335.917.168 1.334-.168.416-.5.5-1.083.749-2.917 1.084-5 1.834-5.584 3.084-.5 1.082-.833 2.25-.833 3.5 0 .25.167.417.417.417h19.166c.25 0 .417-.167.417-.417 0-1.25-.334-2.417-.917-3.583"
}));
}