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