@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 • 787 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function CarDoor(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: "M20.99 5.92c0-1.34-1.06-2.42-2.36-2.42h-7.79c-.8 0-1.58.33-2.14.89l-5.12 5.2c-.37.37-.58.87-.58 1.4v7.09c0 1.34 1.06 2.42 2.36 2.42h13.28c1.3 0 2.36-1.08 2.36-2.42l-.01-12.16zM18 15.5h-3a1 1 0 0 1 0-2h3a1 1 0 0 1 0 2zm-12.51-5l4.63-4.7c.19-.19.45-.3.72-.3h7.79c.2 0 .36.19.36.42L19 10.5H5.49z"
}));
}