@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 • 1.11 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Chart(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: "M3 19.293c-.083-.083-.167-.166-.167-.333v-6c0-.167.167-.333.334-.25h2.5c.25 0 .416.167.416.417v6a.18.18 0 0 1-.166.166H3zM8.25 8.46v-.083h2.417c.25 0 .416.166.416.416V18.96a.18.18 0 0 1-.166.167H8a.18.18 0 0 1-.167-.167V8.793c0-.166.167-.333.417-.333zm5 1.667v-.084h2.417c.25 0 .416.167.416.417v8.583a.18.18 0 0 1-.166.167H13a.18.18 0 0 1-.167-.167v-8.5c0-.25.167-.416.417-.416zm5-5.834V4.21h2.417c.25 0 .416.167.416.417V18.96a.18.18 0 0 1-.166.167H18a.18.18 0 0 1-.167-.167V4.627c0-.167.167-.334.417-.334zm-15.417 17.5c-.5 0-.833-.333-.833-.833s.333-.833.833-.833h18.334c.5 0 .833.333.833.833s-.333.833-.833.833H2.833z"
}));
}