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.25 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Paid(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: "M16.792 5.332H2.208A.208.208 0 0 1 2 5.123c0-1.15.933-2.083 2.083-2.083h10.834c1.15 0 2.083.933 2.083 2.083a.208.208 0 0 1-.208.209zm-.209 3.125a7.096 7.096 0 0 0-6.846 5.261.207.207 0 0 1-.2.155H4.083A2.083 2.083 0 0 1 2 11.79v-5c0-.115.093-.208.208-.208h14.584c.115 0 .208.093.208.208v1.458a.207.207 0 0 1-.063.15.21.21 0 0 1-.152.059h-.202zM4.917 10.332a.625.625 0 1 0 0 1.25h2.5a.625.625 0 0 0 0-1.25h-2.5zm11.666-.209A5.417 5.417 0 0 1 22 15.54a5.417 5.417 0 1 1-5.417-5.417zm2.807 4.053l.003.002a.625.625 0 1 0-1-.75l-2.276 3.035a.207.207 0 0 1-.315.023l-1.083-1.083a.625.625 0 0 0-.884.884l1.25 1.25c.233.235.55.367.88.367h.092a1.245 1.245 0 0 0 .916-.5l2.417-3.228z" })); }