@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 • 777 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function ArrowUp(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: "M11.893 18.195l.113.007a.9.9 0 0 0 .893-.787l.007-.113-.001-8.393 2.419 2.41a.905.905 0 0 0 1.09.06l.096-.076a.898.898 0 0 0 .146-1.174l-.076-.096L12.716 6.1a.904.904 0 0 0-1.255-.087l-4.049 4.02a.898.898 0 0 0 .066 1.27.904.904 0 0 0 1.186.02l2.441-2.368v8.347a.9.9 0 0 0 .788.893z"
}));
}