@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 • 974 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Sort(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: "M6.238 16.584a.18.18 0 0 0 .167.167h1.583c.75 0 1.084.916.583 1.415l-2.583 2.585a.807.807 0 0 1-1.167 0l-2.583-2.585c-.5-.499-.167-1.416.583-1.416h1.583a.18.18 0 0 0 .167-.166V7.416a.18.18 0 0 0-.167-.167H2.821c-.75 0-1.083-.916-.583-1.415L4.82 3.249a.807.807 0 0 1 1.167 0L8.57 5.834c.501.499.167 1.416-.583 1.416H6.405a.18.18 0 0 0-.167.166v9.168zM11.5 8.007a1 1 0 1 1 0-2H21a1 1 0 1 1 0 2h-9.5zm6.5 3a1 1 0 1 1 0 2h-6.5a1 1 0 1 1 0-2H18zm-3 5a1 1 0 1 1 0 2h-3.5a1 1 0 1 1 0-2H15z"
}));
}