UNPKG

@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.

28 lines 990 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function ShowLess(props) { const { color, size, customColor, className, dataTest, ariaHidden, ariaLabel, reverseOnRtl } = props; return React.createElement(OrbitIcon, { viewBox: "0 0 24 24", size: size, color: color, customColor: customColor, className: className, dataTest: dataTest, ariaHidden: ariaHidden, reverseOnRtl: reverseOnRtl, ariaLabel: ariaLabel }, React.createElement("path", { d: "M12.71 14.2l4.72 5.255a.898.898 0 0 1-.07 1.271.904.904 0 0 1-1.274-.07l-3.754-4.18a.4.4 0 0 0-.595 0l-3.825 4.229a.904.904 0 0 1-1.274.065.898.898 0 0 1-.066-1.27l4.796-5.303a.904.904 0 0 1 1.342.003zM7.912 3.296l3.825 4.23a.4.4 0 0 0 .595-.001l3.754-4.18a.904.904 0 0 1 1.274-.07.898.898 0 0 1 .07 1.27l-4.72 5.256a.904.904 0 0 1-1.342.003L6.572 4.503a.898.898 0 0 1 .066-1.271.904.904 0 0 1 1.274.065z" })); }