@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.
22 lines • 576 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function ShowLess(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("path", {
d: "M7 18.59L8.392 20l3.108-3.17L14.608 20l1.382-1.41L11.5 14 7 18.59zm9-13.18L14.608 4 11.5 7.17 8.392 4 7 5.41 11.5 10 16 5.41z"
}));
}