@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 • 898 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function ShowLess(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: "M12.71 14.2l2.72 3.255c.332.37.3.94-.07 1.271a.904.904 0 0 1-1.275-.07l-1.753-2.18a.4.4 0 0 0-.594 0l-1.826 2.229a.904.904 0 0 1-1.274.065.898.898 0 0 1-.066-1.27l2.796-3.303a.904.904 0 0 1 1.342.003zM9.912 5.297l1.826 2.23a.4.4 0 0 0 .594-.001l1.753-2.18a.904.904 0 0 1 1.275-.07c.37.332.402.9.07 1.27l-2.72 3.257a.904.904 0 0 1-1.342.002L8.572 6.503a.898.898 0 0 1 .066-1.271.904.904 0 0 1 1.274.065z"
}));
}