@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) • 853 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./CarRental.js.flow";
export default function CarRental(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="M7.5 11l-3 6v4h2v.5a1.5 1.5 0 0 0 3 0V21h6v.5a1.5 1.5 0 0 0 3 0V21h2v-4l-3.001-6H7.5zm2 8h-3v-2h3v2zm9 0h-3v-2h3v2zm-11-4l1-2h8l1 2h-10zm3.358-11.999L21 3v2h-1.999L19 8h-2l.001-3h-2L15 7.002h-2l.001-2.001h-2.143C10.41 6.721 8.858 8 7 8 4.794 8 3 6.206 3 4s1.794-4 4-4c1.858 0 3.411 1.281 3.858 3.001zM7 6c1.103 0 2-.898 2-2 0-1.103-.897-2-2-2s-2 .897-2 2c0 1.102.897 2 2 2z" />
</OrbitIcon>
);
}