@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 908 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Passengers.js.flow";
export default function Passengers(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<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" />
</OrbitIcon>
);
}