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.

18 lines 900 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function ShowMore(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 18.703a.904.904 0 0 1-1.342.002l-2.796-3.302a.898.898 0 0 1 .066-1.271.904.904 0 0 1 1.274.065l1.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.257zM9.912 9.805a.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.003l2.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 0L9.912 9.804z" })); }