@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 • 879 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Passengers(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: "M9.298 9.192C11.424 9.768 13 11.694 13 14v2a1 1 0 0 1-1 1h-1v3a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-3H4a1 1 0 0 1-1-1v-2c0-2.306 1.577-4.232 3.702-4.808A2.995 2.995 0 0 1 5 6.5c0-1.655 1.346-3 3-3s3 1.345 3 3a2.995 2.995 0 0 1-1.702 2.692zm9.456 6.23C20.079 16.076 21 17.428 21 19v1a1 1 0 0 1-1 1h-6a1 1 0 0 1-1-1v-1c0-1.573.92-2.925 2.246-3.577A2.993 2.993 0 0 1 14 13c0-1.654 1.346-3 3-3s3 1.346 3 3c0 .998-.495 1.877-1.246 2.423z"
}));
}