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 1.6 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Profit(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: "M3.042 19.293a.207.207 0 0 1-.209-.208V17.21a.417.417 0 0 1 .417-.417h2.5a.417.417 0 0 1 .417.417v1.875a.207.207 0 0 1-.209.208H3.042zm5.208-6.666h2.5a.417.417 0 0 1 .417.416v6.042a.207.207 0 0 1-.209.208H8.042a.207.207 0 0 1-.209-.208v-6.042a.417.417 0 0 1 .417-.416zm5 1.666h2.5a.417.417 0 0 1 .417.417v4.375a.207.207 0 0 1-.209.208h-2.916a.207.207 0 0 1-.209-.208V14.71a.417.417 0 0 1 .417-.417zm5-5.833h2.5a.417.417 0 0 1 .417.417v10.208a.207.207 0 0 1-.209.208h-2.916a.207.207 0 0 1-.209-.208V8.877a.417.417 0 0 1 .417-.417zM2.833 21.793a.833.833 0 1 1 0-1.666h18.334a.833.833 0 0 1 0 1.666H2.833zM18.757 5.48a.212.212 0 0 0-.145.066L16 8.379a2.71 2.71 0 0 1-2.848.73l-3.101-1.033a.63.63 0 0 0-.597.112L5.167 11.76a1.042 1.042 0 0 1-1.334-1.601l4.288-3.575a2.69 2.69 0 0 1 2.589-.487l3.102 1.034a.626.626 0 0 0 .655-.167l2.678-2.904a.207.207 0 0 0-.006-.288l-.85-.851a.417.417 0 0 1 .294-.712h3.334a.417.417 0 0 1 .416.417V5.96a.417.417 0 0 1-.416.417.417.417 0 0 1-.295-.122l-.714-.714a.21.21 0 0 0-.151-.061z" })); }