@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 • 825 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function CarRental(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: "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"
}));
}