@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.
28 lines • 970 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Uber(props) {
const {
color,
size,
customColor,
className,
dataTest,
ariaHidden,
ariaLabel,
reverseOnRtl
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest,
ariaHidden: ariaHidden,
reverseOnRtl: reverseOnRtl,
ariaLabel: ariaLabel
}, React.createElement("path", {
d: "M5.063 21h-.475A1.588 1.588 0 0 1 3 19.412V4.588C3 3.711 3.711 3 4.588 3h14.824C20.289 3 21 3.711 21 4.588v15.35c0 .586-.476 1.062-1.063 1.062H5.063zm6.925-14A5.008 5.008 0 0 0 7 11.5h3.484v-.75a.25.25 0 0 1 .25-.25h2.507a.25.25 0 0 1 .25.25v2.5a.25.25 0 0 1-.25.25h-2.507a.25.25 0 0 1-.25-.25v-.75H7a5.009 5.009 0 0 0 5.322 4.489 5.005 5.005 0 0 0 4.675-5.156A5.007 5.007 0 0 0 11.987 7z"
}));
}