@deriv/quill-icons 2.11.1 → 2.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react/Currencies/CurrencyPaxgIcon.d.ts +10 -0
- package/dist/react/Currencies/CurrencyPaxgIcon.js +13 -0
- package/dist/react/Currencies/index.d.ts +1 -0
- package/dist/react/Currencies/index.js +1 -0
- package/dist/react/Illustration/DerivLightPaxgIcon.d.ts +4 -0
- package/dist/react/Illustration/DerivLightPaxgIcon.js +6 -0
- package/dist/react/Illustration/assets/DerivLightPaxg.webp +0 -0
- package/dist/react/Illustration/index.d.ts +1 -0
- package/dist/react/Illustration/index.js +1 -0
- package/dist/react/Logo/PaymentMethodBankTransferBlackIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodBankTransferBlackIcon.js +14 -0
- package/dist/react/Logo/PaymentMethodBankTransferBrandDarkIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodBankTransferBrandDarkIcon.js +13 -0
- package/dist/react/Logo/PaymentMethodBankTransferBrandIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodBankTransferBrandIcon.js +13 -0
- package/dist/react/Logo/PaymentMethodBankTransferWhiteIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodBankTransferWhiteIcon.js +14 -0
- package/dist/react/Logo/PaymentMethodDusupayBlackIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodDusupayBlackIcon.js +7 -0
- package/dist/react/Logo/PaymentMethodDusupayBrandDarkIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodDusupayBrandDarkIcon.js +8 -0
- package/dist/react/Logo/PaymentMethodDusupayBrandIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodDusupayBrandIcon.js +8 -0
- package/dist/react/Logo/PaymentMethodDusupayWhiteIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodDusupayWhiteIcon.js +7 -0
- package/dist/react/Logo/PaymentMethodJetonbankBlackIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodJetonbankBlackIcon.js +7 -0
- package/dist/react/Logo/PaymentMethodJetonbankBrandDarkIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodJetonbankBrandDarkIcon.js +7 -0
- package/dist/react/Logo/PaymentMethodJetonbankBrandIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodJetonbankBrandIcon.js +7 -0
- package/dist/react/Logo/PaymentMethodJetonbankWhiteIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodJetonbankWhiteIcon.js +7 -0
- package/dist/react/Logo/PaymentMethodMtnBlackIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodMtnBlackIcon.js +7 -0
- package/dist/react/Logo/PaymentMethodMtnBrandDarkIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodMtnBrandDarkIcon.js +7 -0
- package/dist/react/Logo/PaymentMethodMtnWhiteIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodMtnWhiteIcon.js +7 -0
- package/dist/react/Logo/PaymentMethodSpeiBrandDarkIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodSpeiBrandDarkIcon.js +10 -0
- package/dist/react/Logo/PaymentMethodVoletBlackIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodVoletBlackIcon.js +7 -0
- package/dist/react/Logo/PaymentMethodVoletBrandDarkIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodVoletBrandDarkIcon.js +7 -0
- package/dist/react/Logo/PaymentMethodVoletBrandIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodVoletBrandIcon.js +7 -0
- package/dist/react/Logo/PaymentMethodVoletWhiteIcon.d.ts +7 -0
- package/dist/react/Logo/PaymentMethodVoletWhiteIcon.js +7 -0
- package/dist/react/Logo/index.d.ts +20 -0
- package/dist/react/Logo/index.js +20 -0
- package/dist/react/PaymentMethods/PaymentMethodAirtelBlackIcon.js +1 -1
- package/dist/react/PaymentMethods/PaymentMethodAirtelBrandDarkIcon.d.ts +7 -0
- package/dist/react/PaymentMethods/PaymentMethodAirtelBrandDarkIcon.js +7 -0
- package/dist/react/PaymentMethods/PaymentMethodAirtelWhiteIcon.js +1 -1
- package/dist/react/PaymentMethods/PaymentMethodOrangeBlackIcon.js +2 -2
- package/dist/react/PaymentMethods/PaymentMethodOrangeBrandDarkIcon.d.ts +7 -0
- package/dist/react/PaymentMethods/PaymentMethodOrangeBrandDarkIcon.js +8 -0
- package/dist/react/PaymentMethods/PaymentMethodOrangeWhiteIcon.js +2 -2
- package/dist/react/PaymentMethods/index.d.ts +2 -0
- package/dist/react/PaymentMethods/index.js +2 -0
- package/dist/react/allIconsNames.js +100 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Ref } from 'react';
|
|
3
|
+
import { QuillSvgProps } from '../../types';
|
|
4
|
+
interface SVGRProps {
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare const CurrencyPaxgIcon: ({ iconSize, title, titleId, ...props }: QuillSvgProps & SVGRProps, ref: Ref<SVGSVGElement>) => React.JSX.Element;
|
|
9
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<QuillSvgProps & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import { sizes } from '../../types';
|
|
4
|
+
export const CurrencyPaxgIcon = ({ iconSize = 'md', title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 32 32', ...sizes[iconSize], role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
5
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
6
|
+
React.createElement("g", { clipPath: 'url(#441e0fb8a)' },
|
|
7
|
+
React.createElement("path", { fill: '#DBBA08', d: 'M16 32c8.837 0 16-7.163 16-16S24.837 0 16 0 0 7.163 0 16s7.163 16 16 16' }),
|
|
8
|
+
React.createElement("path", { fill: '#fff', fillRule: 'evenodd', d: 'M19.086 8.862h-.004l-.01-.006-.013-.005q-.286-.15-.58-.277l-.022-.01a11 11 0 0 0-.637-.256q-.336-.123-.678-.227l-.021-.006a13 13 0 0 0-.704-.19l-.04-.01a17 17 0 0 0-.726-.156l-.053-.012a19 19 0 0 0-.753-.126l-.068-.01a24 24 0 0 0-.78-.096l-.033-.004-.048-.006q-.401-.04-.804-.067c1.613-1.285 3.229-1.332 4.939-.14 1.497 1.041 3.058 1.307 4.866 1.61l.283.048c.24.041.496.084.758.133.701.129 1.217.468 1.529 1.006.46.793.469 2.022.03 3.462l-.013-.017-.044-.065-.058-.083-.044-.065a6 6 0 0 0-.194-.265l-.046-.06-.006-.008-.016-.02q-.086-.113-.175-.224-.018-.023-.039-.046l-.018-.021-.064-.077a3 3 0 0 0-.158-.186l-.033-.037-.064-.072-.116-.128q-.046-.052-.093-.101l-.022-.025-.141-.147-.004-.004q-.041-.045-.085-.088l-.03-.029-.009-.008q-.12-.12-.24-.236l-.036-.033-.048-.045a2 2 0 0 0-.16-.147l-.075-.068a5 5 0 0 0-.154-.137l-.097-.082-.04-.033q-.055-.049-.113-.096l-.046-.037-.104-.08-.037-.03-.168-.128-.02-.018-.07-.05-.05-.037q-.039-.03-.079-.057l-.078-.057-.048-.035-.108-.077-.05-.034-.12-.081-.056-.039-.093-.062-.067-.042h-.003v-.003h-.001l-.14-.088-.04-.025-.037-.022-.034-.021-.076-.046q-.125-.075-.251-.147a6 6 0 0 0-.512-.258l-.008-.004a7 7 0 0 0-.529-.214l-.017-.008a7 7 0 0 0-.55-.17l-.025-.009a8 8 0 0 0-.566-.128h-.01l-.003-.003zm1.332.867-.057-.046c.036.016.076.03.11.04q.011.006.023.01l.04.016.024.01q.037.014.073.03.237.107.465.236c.106.058.215.124.323.19l.034.022.03.019.073.045c.058.034.112.07.171.107l.012.008.041.027.04.026.085.055q.075.05.146.1l.087.063.094.069.034.025q.048.033.093.069l.09.069.098.073.04.031.074.058.09.074.093.074.012.01q.053.04.104.084l.056.05q.016.015.034.028l.085.073q.03.028.061.053.027.023.052.047l.053.049.043.04.076.069.107.1.048.047.048.046.073.072c.034.033.073.069.103.102l.047.048.047.047.074.077.062.067.032.033.107.117.04.043.103.116q.043.047.082.094l.011.013.053.064.05.06.043.051.087.107.045.059.082.102.013.016q.045.057.088.117l.025.033h.002l.098.136.012.018q.035.048.066.095l.03.043.093.136.013.021.066.107.012.017.063.098q-.028.075-.059.151l-.028.072-.017.043-.035.088-.014.037a4 4 0 0 1-.17.395l-.036.079-.023.05-.017.037a5 5 0 0 1-.086.188q-.046.1-.097.197l-.027.05-.086.17-.017.032-.084.159q-.06.108-.122.215l-.019.032-.048.084-.045.081-.008.015a7 7 0 0 1-.258.43l-.058.092-.03.05-.031.049q-.049.08-.101.159l-.012.02-.019.026-.158.232-.064.09-.034.05-.03.044-.029.044-.087.126q-.113.156-.229.31l-.056.072-.042.056-.025.034-.032.044-.07.093a20 20 0 0 1-.89 1.072l-.033.033-.032.033-.009.01-.042.043-.015.017-.124.133q.098-.157.186-.319l.006-.01.004-.008.002-.004.014-.027a8 8 0 0 0 .23-.461l.017-.041.02-.044v-.004l.005-.008.003-.005c.045-.1.093-.21.134-.319l.04-.106.02-.057.013-.038c.043-.116.077-.214.106-.31q.022-.065.04-.129l.024-.082c.026-.1.056-.205.081-.312l.01-.037.04-.18c.026-.116.047-.23.063-.328l.01-.053.006-.041.019-.118c.014-.116.026-.23.04-.366q0-.021.003-.039l.004-.034.004-.04q.03-.313.03-.627 0-.24-.01-.512 0-.028-.004-.053l-.004-.054-.004-.054a9 9 0 0 0-.026-.338l-.007-.054-.013-.106v-.02q-.022-.157-.047-.305l-.03-.18a8 8 0 0 0-.064-.301l-.01-.052-.005-.018-.021-.09a6 6 0 0 0-.098-.349q-.001-.006-.004-.011-.005-.011-.008-.028l-.015-.053a8 8 0 0 0-.154-.427l-.019-.044-.01-.024-.02-.042a7 7 0 0 0-.19-.413l-.017-.033a9 9 0 0 0-.224-.398q-.073-.121-.154-.24l-.02-.027-.04-.06-.033-.047a5 5 0 0 0-.188-.252l-.014-.016-.02-.025-.047-.064a7 7 0 0 0-.294-.335l-.024-.024-.01-.01-.01-.011-.052-.053q-.11-.115-.226-.222l-.006-.006a1 1 0 0 0-.07-.063l-.038-.033a7 7 0 0 0-.236-.201l-.058-.047zm-7.77-1.927-.01.008q-.1.095-.205.198l-.029.03-.06.06a6 6 0 0 0-.172.18l-.014.012-.111.12-.136.143-.017.02-.106.118q-.084.09-.17.188-.144.16-.307.36l-.03.034q-.018.023-.038.045l-.03.037a9 9 0 0 0-.237.299l-.061.08-.008.009-.16.212-.018.026-.1.137-.003.004q-.09.126-.176.252l-.025.037-.011.015-.052.074a15 15 0 0 0-.236.36l-.011.019q-.12.189-.234.382l-.02.035-.02.034-.03.053a8 8 0 0 0-.216.383l-.013.027-.084.159-.046.09-.064.126-.01.02-.081.167-.046.093-.024.049-.006.013-.032.07q-.075.161-.146.33l-.01.027s-.006.01-.007.018l-.008.017a14 14 0 0 0-.173.43l-.01.029-.018.046q-.053.139-.102.277l-.039.114-.01.028-.082.253-.043.146-.074.259-.009.038-.016.06-.009.037q-.036.142-.074.305l-.003.01-.008.031-.01.043q-.043.193-.078.386l-.01.06-.007.042-.003.014c-.018.107-.033.189-.044.268l-.013.102-.004.034a8 8 0 0 0-.042.374v.013l-.014.148-.008.099-.004.042-.005.086a8 8 0 0 0-.01.287v.042q0 .022-.002.042-.002.187.004.364v.085c.004.106.01.19.015.272v.011q.003.039.008.075l.004.036v.004q.009.112.025.226l.007.05.01.082q.009.068.022.136l.013.088.005.034.008.045.007.043q.018.105.049.235l.003.012.008.035.002.01.01.04q.032.136.071.265a8 8 0 0 1-.056-.416s0-.013-.002-.02l-.003-.02-.004-.026a8 8 0 0 1-.038-.486l-.002-.047-.001-.046v-.052a6 6 0 0 1-.01-.354l.002-.17q.002-.163.01-.349v-.046l.005-.05q0-.026.002-.051c.012-.174.027-.332.044-.484l.005-.038.005-.031a7 7 0 0 1 .063-.416q.011-.064.024-.124l.005-.033q.032-.162.07-.33l.033-.142.005-.02.098-.364.007-.023.007-.023.008-.029.009-.032q.069-.225.154-.456l.016-.04.013-.033.02-.045q.072-.183.137-.334.032-.076.068-.151.068-.148.147-.307l.021-.04a9 9 0 0 1 .284-.516 9 9 0 0 1 .312-.475l.02-.03.006-.009.018-.025a9 9 0 0 1 .375-.488l.015-.019a9 9 0 0 1 .397-.447l.022-.024q.18-.19.374-.37.018-.014.034-.03l.029-.025q.178-.16.361-.313l.01-.008.029-.025.013-.012.024-.021q.198-.159.405-.307l.03-.021.08-.058a8 8 0 0 1 .475-.31l.06-.036a13 13 0 0 1 .504-.283l.047-.023q.202-.103.409-.198l.132-.059q.204-.09.412-.17l.043-.017q.046-.016.088-.034.228-.084.46-.154l.045-.013.102-.031a8 8 0 0 1 .58-.15l.03-.005q.246-.056.494-.097l.03-.004.034-.005.04-.005q.245-.038.485-.064l.017-.002h.017a11 11 0 0 1 .577-.037h.035q.016-.003.034-.004h.035q.218-.006.437 0c-.132-.047-.254-.092-.376-.132l-.016-.005-.015-.005-.025-.008a18 18 0 0 0-.444-.133l-.036-.012q-.014-.005-.025-.007l-.048-.015a12 12 0 0 0-.531-.135l-.03-.007-.04-.009q-.231-.052-.464-.1l-.04-.007-.064-.01a23 23 0 0 0-.546-.098l-.078-.011h-.05q-.269-.04-.52-.074l-.073-.009a24 24 0 0 0-.594-.062l-.141-.012a18 18 0 0 0-.625-.045l-.182-.01q-.037 0-.074-.003zm-1.99 15.38-.123-.017a2 2 0 0 0-.144-.166l-.036-.048-.025-.033-.025-.034-.025-.032q-.038-.048-.073-.096a6 6 0 0 1-.15-.224l-.035-.056-.023-.034-.022-.035a2 2 0 0 1-.08-.123q-.07-.114-.134-.235l-.039-.071-.014-.03-.025-.046-.014-.024-.014-.026-.038-.068a11 11 0 0 1-.247-.529c-1.093-2.563-.903-5.598.497-7.917q.095-.157.196-.31a2 2 0 0 1 .077-.108l.018-.025.03-.047.009-.012.074-.104.056-.073.02-.027.072-.094.03-.037.041-.052q.041-.052.085-.102l.077-.093q.03-.037.062-.073l.006-.008.09-.1.003-.002.04-.044.021-.023.019-.02.024-.027.041-.045.064-.064.03-.03.153-.153.05-.046.051-.046.081-.075.073-.069.097-.08.006-.006.086-.073.05-.044.027-.022q.035-.03.072-.057l.03-.023.083-.066.009-.007.08-.06q.026-.02.05-.036l.05-.036.09-.065a2 2 0 0 1 .155-.108l.036-.024.088-.058.094-.062.056-.035.046-.027.093-.056.097-.059q.049-.031.099-.055l.102-.056.094-.052.104-.053.1-.051.06-.03.037-.018.013-.007q.044-.022.093-.044l.094-.043q.078-.04.16-.07l.05-.022.093-.038.109-.047.102-.038.097-.036.027-.01q.044-.019.085-.033l.107-.035.093-.033.032-.012.08-.027q.026-.006.05-.016l.051-.016.101-.03q.028-.006.056-.016.027-.009.056-.016l.053-.015.056-.014.09-.025.058-.016.059-.016.064-.015.035-.008.099-.022c.038-.011.08-.02.115-.027l.034-.006q.034-.009.069-.014l.098-.02q.057-.012.115-.022l.103-.017.09-.015.03-.005a2 2 0 0 1 .193-.028l.09-.012.122-.015.049-.004q.028-.001.058-.005l.09-.008.058-.004.057-.004.104-.005.088-.012.113-.005h.006q.05-.004.1-.004h.094l.11-.004h.186a3 3 0 0 1 .211.005l.097.004.108.005.048.004.047.004.088.008.053.004.053.004.093.012.087.01h.014c.032.005.067.007.096.012l.048.009.048.008.072.01.042.007q.028.003.055.009l.116.065.016.01.066.038.065.036c.04.02.08.045.12.067l.038.023q.072.041.138.087l.016.012a1 1 0 0 0 .082.055l.033.02.054.037.085.057q.069.048.134.1l.06.043.034.024.03.02.024.02q.047.033.099.075.065.054.129.11l.028.024.027.024.031.025.028.023.015.011q.05.043.098.087l.12.117.051.051.052.052q.052.048.1.1.058.065.113.13l.045.054.024.028.024.027.087.103q.039.048.075.098l.033.045.04.056.044.058q.033.042.062.085l.013.018q.052.076.099.151l.036.06q.015.028.032.053l.005.01.048.074.018.029q.032.054.061.11l.03.054.033.063q.008.017.018.033l.016.03.01.018q.024.041.046.086a2 2 0 0 1 .079.175l.029.066.014.032q.01.018.016.036.009.016.016.033c.01.024.023.048.03.072q.038.099.074.201l.021.06.008.02.016.045q.02.052.036.103.023.073.044.15l.021.078.015.059.006.02q.009.022.014.045.016.047.026.097.03.122.053.248l.003.014.01.05q.004.032.013.067l.01.051.004.022.003.014c.014.093.03.189.04.283l.005.047.004.031.005.035.007.053.004.035a6 6 0 0 1 .034.431v.011q.004.03.006.061.011.256.01.519c-.013 2.639-1.337 5.005-3.63 6.487-1.489.963-3.286 1.472-5.197 1.472q-.227 0-.447-.004h-.186l-.25-.008q-.055.001-.108-.004l-.14-.005h-.004l-.172-.008-.109-.005-.137-.008a3 3 0 0 1-.16-.01l-.062-.003-.062-.006-.129-.009-.142-.012-.132-.01-.117-.011-.132-.013-.064-.008q-.033-.003-.064-.008l-.104-.014-.133-.017-.12-.017-.064-.01zm2.296-2.205a5.7 5.7 0 0 0 2.728.684 5.7 5.7 0 0 0 3.074-.902c2.034-1.305 3.351-4.221 1.713-7.797a4.75 4.75 0 0 0-3.145-2.659c-1.572-.419-3.302-.074-4.743.95-2.639 1.873-3.365 5.234-1.69 7.82a5.7 5.7 0 0 0 2.065 1.905zm-1.968 2.685a6.4 6.4 0 0 0 1.724 1.225c3.176 1.534 4.45.378 6.373-1.368l.007-.007c1.195-1.086 2.552-2.318 4.695-3.238 1.247-.537 2.04-1.303 2.357-2.276.406-1.25-.056-2.568-.526-3.47l-.006.013q0 .005-.003.01l-.005.008-.02.044a14 14 0 0 1-.389.863l-.038.077a12 12 0 0 1-.28.532l-.197.347-.015.027-.14.236-.159.253-.062.1-.035.053-.131.204a18 18 0 0 1-.253.366l-.058.084-.055.078-.054.078q-.128.175-.257.346l-.043.059q-.027.033-.052.069l-.01.013q-.03.038-.057.077l-.032.044q-.236.304-.485.6c-1.089 1.305-2.32 2.369-3.656 3.162-1.344.87-2.957 1.394-4.664 1.51-.254.016-.51.026-.76.026-.201 0-.415-.002-.671-.008l-.132-.004a23 23 0 0 1-.62-.026h-.034l-.033-.002h-.044a21 21 0 0 1-.572-.043l-.048-.003q-.279-.03-.558-.063zM7.75 12.242l-.024-.005h.01c.494-2.548.85-4.39 4.29-4.443l-.043.047q-.13.135-.268.282l-.046.05-.065.07-.078.084-.048.053-.04.044-.154.173q-.17.193-.344.4l-.01.013q-.166.204-.317.396l-.02.026-.009.013c-.102.134-.197.256-.282.376l-.005.009-.01.014-.007.013-.007.01q-.149.205-.263.375l-.033.05c-.092.132-.164.245-.23.348l-.017.027-.008.014-.008.015-.015.024q-.117.186-.228.375l-.006.008q-.008.013-.014.027-.117.195-.226.397l-.02.036-.053.095c-.05.094-.105.198-.157.302l-.019.037-.005.01-.007.014-.013.026-.04.082a10 10 0 0 0-.127.267q-.014.027-.024.052l-.004.01-.015.034-.034.078a7 7 0 0 0-.116.264.4.4 0 0 0-.025.062l-.02.048c-.05.117-.09.223-.132.33l-.009.024-.016.046-.017.052-.005.017-.01.027q-.05.136-.098.273l-.024.073-.008.025-.008.025-.01.034-.084.274-.003.008-.004.013-.016.059-.015.06-.005.02a8 8 0 0 0-.08.287l-.009.037-.01.045-.006.024-.008.032-.008.026-.018.077-.046.194-.009.05-.006.037-.003.015q-.003.022-.01.045l-.005.03-.013.068-.036.187-.008.05-.008.048q-.001.015-.005.03l-.004.03-.008.056-.013.08q-.012.07-.022.143l-.012.102q-.005.03-.008.062l-.007.06-.003.023a3 3 0 0 0-.02.178q-.006.052-.008.102 0 .03-.004.061v.003l-.004.048v.003l-.015.204q-.003.052-.004.107l-.004.117a3 3 0 0 0-.005.19v.107l.001.068v.055l.002.09.001.088q.001.032.004.06l.004.057.008.115.003.053q.002.06.008.118l.006.077.004.038.013.116.009.068.011.095.01.05.01.067.02.112q.01.048.016.095l.01.062q.008.025.011.05.009.034.015.067l.024.111q.013.068.028.131l.004.02q.01.044.024.088l.01.033.028.106.027.095.013.047q.016.058.036.113.009.017.013.037l.008.022.02.056.044.129.025.062.022.052.042.106q.006.014.01.029l.04.098.056.117.048.1.023.048.034.072.059.107.003.006.055.102q.05.096.112.187l.023.034.06.095.023.037.045.07q.024.036.052.071l.024.032.035.047.016.021q.01.015.02.026.03.045.065.088a9 9 0 0 0 .281.583l.03.052a7 7 0 0 0 .295.51l.003.005c.072.11.143.219.224.334l.016.025.014.021.044.064c-1.84-.382-3.06-1.105-3.628-2.152-.64-1.177-.499-2.817.418-4.88.582-1.308.836-2.62 1.059-3.776z', clipRule: 'evenodd' })),
|
|
9
|
+
React.createElement("defs", null,
|
|
10
|
+
React.createElement("clipPath", { id: '441e0fb8a' },
|
|
11
|
+
React.createElement("path", { fill: '#fff', d: 'M0 0h32v32H0z' })))));
|
|
12
|
+
const ForwardRef = forwardRef(CurrencyPaxgIcon);
|
|
13
|
+
export default ForwardRef;
|
|
@@ -31,6 +31,7 @@ export { default as CurrencyNeoIcon } from './CurrencyNeoIcon';
|
|
|
31
31
|
export { default as CurrencyNoneIcon } from './CurrencyNoneIcon';
|
|
32
32
|
export { default as CurrencyOmgIcon } from './CurrencyOmgIcon';
|
|
33
33
|
export { default as CurrencyPaxIcon } from './CurrencyPaxIcon';
|
|
34
|
+
export { default as CurrencyPaxgIcon } from './CurrencyPaxgIcon';
|
|
34
35
|
export { default as CurrencySingleCollateralDaiIcon } from './CurrencySingleCollateralDaiIcon';
|
|
35
36
|
export { default as CurrencySolIcon } from './CurrencySolIcon';
|
|
36
37
|
export { default as CurrencyTerraIcon } from './CurrencyTerraIcon';
|
|
@@ -31,6 +31,7 @@ export { default as CurrencyNeoIcon } from './CurrencyNeoIcon';
|
|
|
31
31
|
export { default as CurrencyNoneIcon } from './CurrencyNoneIcon';
|
|
32
32
|
export { default as CurrencyOmgIcon } from './CurrencyOmgIcon';
|
|
33
33
|
export { default as CurrencyPaxIcon } from './CurrencyPaxIcon';
|
|
34
|
+
export { default as CurrencyPaxgIcon } from './CurrencyPaxgIcon';
|
|
34
35
|
export { default as CurrencySingleCollateralDaiIcon } from './CurrencySingleCollateralDaiIcon';
|
|
35
36
|
export { default as CurrencySolIcon } from './CurrencySolIcon';
|
|
36
37
|
export { default as CurrencyTerraIcon } from './CurrencyTerraIcon';
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import illustrationSrc from './assets/DerivLightPaxg.webp';
|
|
4
|
+
const DerivLightPaxgIcon = ({ title, titleId, alt, ...props }, ref) => (React.createElement("img", { src: illustrationSrc, ref: ref, role: 'img', alt: alt ?? title ?? '', "aria-labelledby": titleId, ...props }));
|
|
5
|
+
const ForwardRef = forwardRef(DerivLightPaxgIcon);
|
|
6
|
+
export default ForwardRef;
|
|
Binary file
|
|
@@ -209,6 +209,7 @@ export { default as DerivLightP2pSecureImageIcon } from './DerivLightP2pSecureIm
|
|
|
209
209
|
export { default as DerivLightPairsIcon } from './DerivLightPairsIcon';
|
|
210
210
|
export { default as DerivLightPassportKycIcon } from './DerivLightPassportKycIcon';
|
|
211
211
|
export { default as DerivLightPassportPlaceholderKycIcon } from './DerivLightPassportPlaceholderKycIcon';
|
|
212
|
+
export { default as DerivLightPaxgIcon } from './DerivLightPaxgIcon';
|
|
212
213
|
export { default as DerivLightPaymentAgentIcon } from './DerivLightPaymentAgentIcon';
|
|
213
214
|
export { default as DerivLightPaymentMethodVerificationFailedIcon } from './DerivLightPaymentMethodVerificationFailedIcon';
|
|
214
215
|
export { default as DerivLightPaymentMethodVerificationPassedIcon } from './DerivLightPaymentMethodVerificationPassedIcon';
|
|
@@ -209,6 +209,7 @@ export { default as DerivLightP2pSecureImageIcon } from './DerivLightP2pSecureIm
|
|
|
209
209
|
export { default as DerivLightPairsIcon } from './DerivLightPairsIcon';
|
|
210
210
|
export { default as DerivLightPassportKycIcon } from './DerivLightPassportKycIcon';
|
|
211
211
|
export { default as DerivLightPassportPlaceholderKycIcon } from './DerivLightPassportPlaceholderKycIcon';
|
|
212
|
+
export { default as DerivLightPaxgIcon } from './DerivLightPaxgIcon';
|
|
212
213
|
export { default as DerivLightPaymentAgentIcon } from './DerivLightPaymentAgentIcon';
|
|
213
214
|
export { default as DerivLightPaymentMethodVerificationFailedIcon } from './DerivLightPaymentMethodVerificationFailedIcon';
|
|
214
215
|
export { default as DerivLightPaymentMethodVerificationPassedIcon } from './DerivLightPaymentMethodVerificationPassedIcon';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodBankTransferBlackIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("g", { fill: '#000' },
|
|
6
|
+
React.createElement("path", { d: 'M24.486 49.288v2.739H14.23l-1.806-2.739zm0-6.4v2.752H10.019L8.213 42.9zm0-6.402v2.738H5.806L4 36.486z' }),
|
|
7
|
+
React.createElement("path", { fillRule: 'evenodd', d: 'm60.851 30.206-17.738-8.308-17.737 8.329a1.41 1.41 0 0 0-.834 1.314v.537c0 .78.632 1.412 1.413 1.412h1.413v1.491c.018.772.64 1.394 1.413 1.413h1.412v14.53H28.78a1.45 1.45 0 0 0-1.412 1.413v1.455h-1.413c-.78 0-1.413.633-1.413 1.413v2.896h37.15v-2.896a1.45 1.45 0 0 0-1.456-1.413h-1.412v-1.49a1.45 1.45 0 0 0-1.448-1.413h-1.413V36.344h1.413c.786 0 1.429-.626 1.448-1.413v-1.455h1.413a1.41 1.41 0 0 0 1.455-1.413v-.522a1.41 1.41 0 0 0-.84-1.335m-12.023 6.188h2.861v14.495h-2.86zm-7.113 0h2.825v14.495h-2.825zm-7.142 0H37.4v14.495h-2.826zm37.035-6.779h4.65q1.193 0 1.851.672.672.672.672 1.783 0 .548-.15.933-.138.384-.385.63a1.5 1.5 0 0 1-.562.37q-.315.11-.686.124v.083q.343 0 .714.123.384.123.7.398.315.26.52.686.22.424.22 1.042 0 .563-.192 1.07-.179.494-.508.864-.33.37-.782.59a2.4 2.4 0 0 1-.987.206h-5.075zm2.085 7.818h2.4q.412 0 .645-.22.246-.233.247-.644v-.467q0-.411-.247-.63-.233-.234-.645-.234h-2.4zm0-3.895h2.07q.412 0 .646-.234.233-.233.233-.644v-.412q0-.411-.233-.644t-.645-.234h-2.071zm11.356 5.308q.372.343.92.343h1.124V37.61h-.672v-3.154q0-1.29-.768-1.962t-2.304-.672q-1.14 0-1.81.37a3.1 3.1 0 0 0-1.098 1.002l1.207 1.07q.234-.33.59-.59.357-.261.96-.261.645 0 .919.316.274.3.274.823v.452h-1.138q-1.427 0-2.263.563-.823.548-.823 1.687 0 .946.576 1.522t1.66.576q.822 0 1.385-.357.562-.37.727-1.07h.082q.096.577.453.92m-1.028-1.125q-.357.22-.864.22-.453 0-.7-.179-.246-.192-.247-.59v-.205q0-.81 1.194-.81h.987v.85q0 .495-.37.714', clipRule: 'evenodd' }),
|
|
8
|
+
React.createElement("path", { d: 'M88.457 39.189v-7.201h2.03v1.22h.082q.192-.563.672-.974t1.33-.411q1.112 0 1.674.74.576.74.576 2.113v4.513h-2.03V34.84q0-.7-.22-1.028-.218-.343-.781-.343-.248 0-.48.069-.234.054-.425.192a1.05 1.05 0 0 0-.288.342.9.9 0 0 0-.11.453v4.664zm10.201-10.15h-2.03v10.15h2.03v-2.03l.905-1.015 1.618 3.045h2.415l-2.675-4.444 2.4-2.757h-2.249l-1.44 1.714-.892 1.33h-.082zM75.6 45.183v7.722h-2.085v-7.722h-2.592V43.33h7.27v1.852zm3.293.521v7.2h2.03v-4.21q0-.63.425-.864.44-.233 1.33-.233h.508v-1.893h-.356q-.425 0-.741.137-.315.123-.549.343a1.8 1.8 0 0 0-.356.507 2.1 2.1 0 0 0-.192.576h-.069v-1.563z' }),
|
|
9
|
+
React.createElement("path", { fillRule: 'evenodd', d: 'M89.573 52.905q-.548 0-.92-.343-.356-.343-.452-.92h-.082q-.165.7-.727 1.07-.563.357-1.385.357-1.084 0-1.66-.576t-.576-1.522q0-1.139.823-1.687.837-.563 2.263-.563h1.139v-.452q0-.522-.275-.823-.275-.316-.919-.316-.603 0-.96.26-.356.262-.59.59l-1.207-1.07q.44-.644 1.097-1 .673-.37 1.811-.37 1.536 0 2.304.671.768.672.768 1.962v3.154h.673v1.578zm-2.812-1.248q.507 0 .864-.22.37-.22.37-.713v-.85h-.987q-1.194 0-1.193.809v.206q0 .397.246.59.247.178.7.178', clipRule: 'evenodd' }),
|
|
10
|
+
React.createElement("path", { d: 'M92.06 45.704v7.2h2.03v-4.663q0-.26.11-.452.11-.207.288-.343.192-.138.425-.192.234-.069.48-.069.563 0 .782.343.22.33.22 1.029v4.348h2.03v-4.513q0-1.371-.577-2.112-.562-.74-1.673-.74-.85 0-1.33.41-.48.413-.673.974h-.082v-1.22zm10.612 7.366q-1.042 0-1.755-.33a4.2 4.2 0 0 1-1.276-.96l1.193-1.207a3.1 3.1 0 0 0 .851.672q.467.247 1.056.247.603 0 .837-.178a.63.63 0 0 0 .233-.508q0-.508-.727-.603l-.782-.096q-2.428-.302-2.428-2.222 0-.521.192-.947.206-.439.563-.74.37-.315.877-.48a3.6 3.6 0 0 1 1.166-.179q.562 0 .988.082.44.07.768.22.343.137.617.356.288.206.563.467l-1.166 1.193a2.5 2.5 0 0 0-.782-.535 2 2 0 0 0-.878-.206q-.52 0-.741.165a.52.52 0 0 0-.219.439q0 .288.151.453.165.15.603.22l.81.109q2.373.315 2.373 2.167 0 .522-.22.96a2.3 2.3 0 0 1-.631.768q-.398.315-.974.494a4.2 4.2 0 0 1-1.262.178m3.772-5.788h1.015v5.624h2.03V47.28h1.44v-1.577h-1.44v-1.372h1.44v-1.577h-1.317q-1.056 0-1.604.535-.549.52-.549 1.563v.85h-1.015z' }),
|
|
11
|
+
React.createElement("path", { fillRule: 'evenodd', d: 'M115.009 53.07a3.9 3.9 0 0 1-1.468-.261 3.2 3.2 0 0 1-1.097-.755 3.4 3.4 0 0 1-.672-1.193 5.2 5.2 0 0 1-.22-1.564q0-.85.22-1.536.22-.7.644-1.193.44-.494 1.07-.755.632-.274 1.44-.274.892 0 1.523.302.645.3 1.042.81.412.505.59 1.179.192.658.192 1.385v.604h-4.622v.11q0 .712.384 1.138.384.411 1.207.411.63 0 1.029-.247.398-.26.74-.617l1.015 1.262q-.48.563-1.262.878-.768.315-1.755.315m-.041-6.036q-.618 0-.974.412-.343.398-.343 1.07v.11h2.524v-.124q0-.659-.302-1.056-.288-.412-.905-.412', clipRule: 'evenodd' }),
|
|
12
|
+
React.createElement("path", { d: 'M119.707 45.704v7.2h2.03v-4.21q0-.63.425-.864.439-.233 1.331-.233H124v-1.893h-.357q-.425 0-.74.137a1.7 1.7 0 0 0-.549.343 1.8 1.8 0 0 0-.357.507 2.2 2.2 0 0 0-.192.576h-.068v-1.563z' }))));
|
|
13
|
+
const ForwardRef = forwardRef(PaymentMethodBankTransferBlackIcon);
|
|
14
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodBankTransferBrandDarkIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#B1B4BC', d: 'M24.486 49.288v2.739H14.23l-1.806-2.739zm0-6.4v2.752H10.019L8.213 42.9zm0-6.402v2.738H5.806L4 36.486z' }),
|
|
6
|
+
React.createElement("path", { fill: '#383D4A', fillRule: 'evenodd', d: 'm60.851 30.206-17.738-8.308-17.737 8.329a1.41 1.41 0 0 0-.834 1.314v.537c0 .78.632 1.412 1.413 1.412h1.413v1.491c.018.772.64 1.394 1.413 1.413h1.412v14.53H28.78a1.45 1.45 0 0 0-1.412 1.413v1.455h-1.413c-.78 0-1.413.633-1.413 1.413v2.896h37.15v-2.896a1.45 1.45 0 0 0-1.456-1.413h-1.412v-1.49a1.45 1.45 0 0 0-1.448-1.413h-1.413V36.344h1.413c.786 0 1.429-.626 1.448-1.413v-1.455h1.413a1.41 1.41 0 0 0 1.455-1.413v-.522a1.41 1.41 0 0 0-.84-1.335m-12.023 6.188h2.861v14.495h-2.86zm-7.113 0h2.825v14.495h-2.825zm-7.142 0H37.4v14.495h-2.826zm37.035-6.779h4.65q1.193 0 1.851.672.672.672.672 1.783 0 .548-.15.933-.138.384-.385.63a1.5 1.5 0 0 1-.562.37q-.315.11-.686.124v.083q.343 0 .714.123.384.123.7.398.315.26.52.686.22.424.22 1.042 0 .563-.192 1.07-.179.494-.508.864-.33.37-.782.59a2.4 2.4 0 0 1-.987.206h-5.075zm2.085 7.818h2.4q.412 0 .645-.22.246-.233.247-.644v-.467q0-.411-.247-.63-.233-.234-.645-.234h-2.4zm0-3.895h2.07q.412 0 .646-.234.233-.233.233-.644v-.412q0-.411-.233-.644t-.645-.234h-2.071zm11.356 5.308q.372.343.92.343h1.124V37.61h-.672v-3.154q0-1.29-.768-1.962t-2.304-.672q-1.14 0-1.81.37a3.1 3.1 0 0 0-1.098 1.002l1.207 1.07q.234-.33.59-.59.357-.261.96-.261.645 0 .919.316.274.3.274.823v.452h-1.138q-1.427 0-2.263.563-.823.548-.823 1.687 0 .946.576 1.522t1.66.576q.822 0 1.385-.357.562-.37.727-1.07h.082q.096.577.453.92m-1.028-1.125q-.357.22-.864.22-.453 0-.7-.179-.246-.192-.247-.59v-.205q0-.81 1.194-.81h.987v.85q0 .495-.37.714', clipRule: 'evenodd' }),
|
|
7
|
+
React.createElement("path", { fill: '#383D4A', d: 'M88.457 39.189v-7.201h2.03v1.22h.082q.192-.563.672-.974t1.33-.411q1.112 0 1.674.74.576.74.576 2.113v4.513h-2.03V34.84q0-.7-.22-1.028-.218-.343-.781-.343-.248 0-.48.069-.234.054-.425.192a1.05 1.05 0 0 0-.288.342.9.9 0 0 0-.11.453v4.664zm10.201-10.15h-2.03v10.15h2.03v-2.03l.905-1.015 1.618 3.045h2.415l-2.675-4.444 2.4-2.757h-2.249l-1.44 1.714-.892 1.33h-.082zM75.6 45.183v7.722h-2.085v-7.722h-2.592V43.33h7.27v1.852zm3.293.521v7.2h2.03v-4.21q0-.63.425-.864.44-.233 1.33-.233h.508v-1.893h-.356q-.425 0-.741.137-.315.123-.549.343a1.8 1.8 0 0 0-.356.507 2.1 2.1 0 0 0-.192.576h-.069v-1.563z' }),
|
|
8
|
+
React.createElement("path", { fill: '#383D4A', fillRule: 'evenodd', d: 'M89.573 52.905q-.548 0-.92-.343-.356-.343-.452-.92h-.082q-.165.7-.727 1.07-.563.357-1.385.357-1.084 0-1.66-.576t-.576-1.522q0-1.139.823-1.687.837-.563 2.263-.563h1.139v-.452q0-.522-.275-.823-.275-.316-.919-.316-.603 0-.96.26-.356.262-.59.59l-1.207-1.07q.44-.644 1.097-1 .673-.37 1.811-.37 1.536 0 2.304.671.768.672.768 1.962v3.154h.673v1.578zm-2.812-1.248q.507 0 .864-.22.37-.22.37-.713v-.85h-.987q-1.194 0-1.193.809v.206q0 .397.246.59.247.178.7.178', clipRule: 'evenodd' }),
|
|
9
|
+
React.createElement("path", { fill: '#383D4A', d: 'M92.06 45.704v7.2h2.03v-4.663q0-.26.11-.452.11-.207.288-.343.192-.138.425-.192.234-.069.48-.069.563 0 .782.343.22.33.22 1.029v4.348h2.03v-4.513q0-1.371-.577-2.112-.562-.74-1.673-.74-.85 0-1.33.41-.48.413-.673.974h-.082v-1.22zm10.612 7.366q-1.042 0-1.755-.33a4.2 4.2 0 0 1-1.276-.96l1.193-1.207a3.1 3.1 0 0 0 .851.672q.467.247 1.056.247.603 0 .837-.178a.63.63 0 0 0 .233-.508q0-.508-.727-.603l-.782-.096q-2.428-.302-2.428-2.222 0-.521.192-.947.206-.439.563-.74.37-.315.877-.48a3.6 3.6 0 0 1 1.166-.179q.562 0 .988.082.44.07.768.22.343.137.617.356.288.206.563.467l-1.166 1.193a2.5 2.5 0 0 0-.782-.535 2 2 0 0 0-.878-.206q-.52 0-.741.165a.52.52 0 0 0-.219.439q0 .288.151.453.165.15.603.22l.81.109q2.373.315 2.373 2.167 0 .522-.22.96a2.3 2.3 0 0 1-.631.768q-.398.315-.974.494a4.2 4.2 0 0 1-1.262.178m3.772-5.788h1.015v5.624h2.03V47.28h1.44v-1.577h-1.44v-1.372h1.44v-1.577h-1.317q-1.056 0-1.604.535-.549.52-.549 1.563v.85h-1.015z' }),
|
|
10
|
+
React.createElement("path", { fill: '#383D4A', fillRule: 'evenodd', d: 'M115.009 53.07a3.9 3.9 0 0 1-1.468-.261 3.2 3.2 0 0 1-1.097-.755 3.4 3.4 0 0 1-.672-1.193 5.2 5.2 0 0 1-.22-1.564q0-.85.22-1.536.22-.7.644-1.193.44-.494 1.07-.755.632-.274 1.44-.274.892 0 1.523.302.645.3 1.042.81.412.505.59 1.179.192.658.192 1.385v.604h-4.622v.11q0 .712.384 1.138.384.411 1.207.411.63 0 1.029-.247.398-.26.74-.617l1.015 1.262q-.48.563-1.262.878-.768.315-1.755.315m-.041-6.036q-.618 0-.974.412-.343.398-.343 1.07v.11h2.524v-.124q0-.659-.302-1.056-.288-.412-.905-.412', clipRule: 'evenodd' }),
|
|
11
|
+
React.createElement("path", { fill: '#383D4A', d: 'M119.707 45.704v7.2h2.03v-4.21q0-.63.425-.864.439-.233 1.331-.233H124v-1.893h-.357q-.425 0-.74.137a1.7 1.7 0 0 0-.549.343 1.8 1.8 0 0 0-.357.507 2.2 2.2 0 0 0-.192.576h-.068v-1.563z' })));
|
|
12
|
+
const ForwardRef = forwardRef(PaymentMethodBankTransferBrandDarkIcon);
|
|
13
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodBankTransferBrandIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#B1B4BC', d: 'M24.486 49.288v2.739H14.23l-1.806-2.739zm0-6.4v2.752H10.019L8.213 42.9zm0-6.402v2.738H5.806L4 36.486z' }),
|
|
6
|
+
React.createElement("path", { fill: '#000', fillRule: 'evenodd', d: 'm60.851 30.206-17.738-8.308-17.737 8.329a1.41 1.41 0 0 0-.834 1.314v.537c0 .78.632 1.412 1.413 1.412h1.413v1.491c.018.772.64 1.394 1.413 1.413h1.412v14.53H28.78a1.45 1.45 0 0 0-1.412 1.413v1.455h-1.413c-.78 0-1.413.633-1.413 1.413v2.896h37.15v-2.896a1.45 1.45 0 0 0-1.456-1.413h-1.412v-1.49a1.45 1.45 0 0 0-1.448-1.413h-1.413V36.344h1.413c.786 0 1.429-.626 1.448-1.413v-1.455h1.413a1.41 1.41 0 0 0 1.455-1.413v-.522a1.41 1.41 0 0 0-.84-1.335m-12.023 6.188h2.861v14.495h-2.86zm-7.113 0h2.825v14.495h-2.825zm-7.142 0H37.4v14.495h-2.826zm37.035-6.779h4.65q1.193 0 1.851.672.672.672.672 1.783 0 .548-.15.933-.138.384-.385.63a1.5 1.5 0 0 1-.562.37q-.315.11-.686.124v.083q.343 0 .714.123.384.123.7.398.315.26.52.686.22.424.22 1.042 0 .563-.192 1.07-.179.494-.508.864-.33.37-.782.59a2.4 2.4 0 0 1-.987.206h-5.075zm2.085 7.818h2.4q.412 0 .645-.22.246-.233.247-.644v-.467q0-.411-.247-.63-.233-.234-.645-.234h-2.4zm0-3.895h2.07q.412 0 .646-.234.233-.233.233-.644v-.412q0-.411-.233-.644t-.645-.234h-2.071zm11.356 5.308q.372.343.92.343h1.124V37.61h-.672v-3.154q0-1.29-.768-1.962t-2.304-.672q-1.14 0-1.81.37a3.1 3.1 0 0 0-1.098 1.002l1.207 1.07q.234-.33.59-.59.357-.261.96-.261.645 0 .919.316.274.3.274.823v.452h-1.138q-1.427 0-2.263.563-.823.548-.823 1.687 0 .946.576 1.522t1.66.576q.822 0 1.385-.357.562-.37.727-1.07h.082q.096.577.453.92m-1.028-1.125q-.357.22-.864.22-.453 0-.7-.179-.246-.192-.247-.59v-.205q0-.81 1.194-.81h.987v.85q0 .495-.37.714', clipRule: 'evenodd' }),
|
|
7
|
+
React.createElement("path", { fill: '#000', d: 'M88.457 39.189v-7.201h2.03v1.22h.082q.192-.563.672-.974t1.33-.411q1.112 0 1.674.74.576.74.576 2.113v4.513h-2.03V34.84q0-.7-.22-1.028-.218-.343-.781-.343-.248 0-.48.069-.234.054-.425.192a1.05 1.05 0 0 0-.288.342.9.9 0 0 0-.11.453v4.664zm10.201-10.15h-2.03v10.15h2.03v-2.03l.905-1.015 1.618 3.045h2.415l-2.675-4.444 2.4-2.757h-2.249l-1.44 1.714-.892 1.33h-.082zM75.6 45.183v7.722h-2.085v-7.722h-2.592V43.33h7.27v1.852zm3.293.521v7.2h2.03v-4.21q0-.63.425-.864.44-.233 1.33-.233h.508v-1.893h-.356q-.425 0-.741.137-.315.123-.549.343a1.8 1.8 0 0 0-.356.507 2.1 2.1 0 0 0-.192.576h-.069v-1.563z' }),
|
|
8
|
+
React.createElement("path", { fill: '#000', fillRule: 'evenodd', d: 'M89.573 52.905q-.548 0-.92-.343-.356-.343-.452-.92h-.082q-.165.7-.727 1.07-.563.357-1.385.357-1.084 0-1.66-.576t-.576-1.522q0-1.139.823-1.687.837-.563 2.263-.563h1.139v-.452q0-.522-.275-.823-.275-.316-.919-.316-.603 0-.96.26-.356.262-.59.59l-1.207-1.07q.44-.644 1.097-1 .673-.37 1.811-.37 1.536 0 2.304.671.768.672.768 1.962v3.154h.673v1.578zm-2.812-1.248q.507 0 .864-.22.37-.22.37-.713v-.85h-.987q-1.194 0-1.193.809v.206q0 .397.246.59.247.178.7.178', clipRule: 'evenodd' }),
|
|
9
|
+
React.createElement("path", { fill: '#000', d: 'M92.06 45.704v7.2h2.03v-4.663q0-.26.11-.452.11-.207.288-.343.192-.138.425-.192.234-.069.48-.069.563 0 .782.343.22.33.22 1.029v4.348h2.03v-4.513q0-1.371-.577-2.112-.562-.74-1.673-.74-.85 0-1.33.41-.48.413-.673.974h-.082v-1.22zm10.612 7.366q-1.042 0-1.755-.33a4.2 4.2 0 0 1-1.276-.96l1.193-1.207a3.1 3.1 0 0 0 .851.672q.467.247 1.056.247.603 0 .837-.178a.63.63 0 0 0 .233-.508q0-.508-.727-.603l-.782-.096q-2.428-.302-2.428-2.222 0-.521.192-.947.206-.439.563-.74.37-.315.877-.48a3.6 3.6 0 0 1 1.166-.179q.562 0 .988.082.44.07.768.22.343.137.617.356.288.206.563.467l-1.166 1.193a2.5 2.5 0 0 0-.782-.535 2 2 0 0 0-.878-.206q-.52 0-.741.165a.52.52 0 0 0-.219.439q0 .288.151.453.165.15.603.22l.81.109q2.373.315 2.373 2.167 0 .522-.22.96a2.3 2.3 0 0 1-.631.768q-.398.315-.974.494a4.2 4.2 0 0 1-1.262.178m3.772-5.788h1.015v5.624h2.03V47.28h1.44v-1.577h-1.44v-1.372h1.44v-1.577h-1.317q-1.056 0-1.604.535-.549.52-.549 1.563v.85h-1.015z' }),
|
|
10
|
+
React.createElement("path", { fill: '#000', fillRule: 'evenodd', d: 'M115.009 53.07a3.9 3.9 0 0 1-1.468-.261 3.2 3.2 0 0 1-1.097-.755 3.4 3.4 0 0 1-.672-1.193 5.2 5.2 0 0 1-.22-1.564q0-.85.22-1.536.22-.7.644-1.193.44-.494 1.07-.755.632-.274 1.44-.274.892 0 1.523.302.645.3 1.042.81.412.505.59 1.179.192.658.192 1.385v.604h-4.622v.11q0 .712.384 1.138.384.411 1.207.411.63 0 1.029-.247.398-.26.74-.617l1.015 1.262q-.48.563-1.262.878-.768.315-1.755.315m-.041-6.036q-.618 0-.974.412-.343.398-.343 1.07v.11h2.524v-.124q0-.659-.302-1.056-.288-.412-.905-.412', clipRule: 'evenodd' }),
|
|
11
|
+
React.createElement("path", { fill: '#000', d: 'M119.707 45.704v7.2h2.03v-4.21q0-.63.425-.864.439-.233 1.331-.233H124v-1.893h-.357q-.425 0-.74.137a1.7 1.7 0 0 0-.549.343 1.8 1.8 0 0 0-.357.507 2.2 2.2 0 0 0-.192.576h-.068v-1.563z' })));
|
|
12
|
+
const ForwardRef = forwardRef(PaymentMethodBankTransferBrandIcon);
|
|
13
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodBankTransferWhiteIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("g", { fill: '#fff' },
|
|
6
|
+
React.createElement("path", { d: 'M24.486 49.288v2.739H14.23l-1.806-2.739zm0-6.4v2.752H10.019L8.213 42.9zm0-6.402v2.738H5.806L4 36.486z' }),
|
|
7
|
+
React.createElement("path", { fillRule: 'evenodd', d: 'm60.851 30.206-17.738-8.308-17.737 8.329a1.41 1.41 0 0 0-.834 1.314v.537c0 .78.632 1.412 1.413 1.412h1.413v1.491c.018.772.64 1.394 1.413 1.413h1.412v14.53H28.78a1.45 1.45 0 0 0-1.412 1.413v1.455h-1.413c-.78 0-1.413.633-1.413 1.413v2.896h37.15v-2.896a1.45 1.45 0 0 0-1.456-1.413h-1.412v-1.49a1.45 1.45 0 0 0-1.448-1.413h-1.413V36.344h1.413c.786 0 1.429-.626 1.448-1.413v-1.455h1.413a1.41 1.41 0 0 0 1.455-1.413v-.522a1.41 1.41 0 0 0-.84-1.335m-12.023 6.188h2.861v14.495h-2.86zm-7.113 0h2.825v14.495h-2.825zm-7.142 0H37.4v14.495h-2.826zm37.035-6.779h4.65q1.193 0 1.851.672.672.672.672 1.783 0 .548-.15.933-.138.384-.385.63a1.5 1.5 0 0 1-.562.37q-.315.11-.686.124v.083q.343 0 .714.123.384.123.7.398.315.26.52.686.22.424.22 1.042 0 .563-.192 1.07-.179.494-.508.864-.33.37-.782.59a2.4 2.4 0 0 1-.987.206h-5.075zm2.085 7.818h2.4q.412 0 .645-.22.246-.233.247-.644v-.467q0-.411-.247-.63-.233-.234-.645-.234h-2.4zm0-3.895h2.07q.412 0 .646-.234.233-.233.233-.644v-.412q0-.411-.233-.644t-.645-.234h-2.071zm11.356 5.308q.372.343.92.343h1.124V37.61h-.672v-3.154q0-1.29-.768-1.962t-2.304-.672q-1.14 0-1.81.37a3.1 3.1 0 0 0-1.098 1.002l1.207 1.07q.234-.33.59-.59.357-.261.96-.261.645 0 .919.316.274.3.274.823v.452h-1.138q-1.427 0-2.263.563-.823.548-.823 1.687 0 .946.576 1.522t1.66.576q.822 0 1.385-.357.562-.37.727-1.07h.082q.096.577.453.92m-1.028-1.125q-.357.22-.864.22-.453 0-.7-.179-.246-.192-.247-.59v-.205q0-.81 1.194-.81h.987v.85q0 .495-.37.714', clipRule: 'evenodd' }),
|
|
8
|
+
React.createElement("path", { d: 'M88.457 39.189v-7.201h2.03v1.22h.082q.192-.563.672-.974t1.33-.411q1.112 0 1.674.74.576.74.576 2.113v4.513h-2.03V34.84q0-.7-.22-1.028-.218-.343-.781-.343-.248 0-.48.069-.234.054-.425.192a1.05 1.05 0 0 0-.288.342.9.9 0 0 0-.11.453v4.664zm10.201-10.15h-2.03v10.15h2.03v-2.03l.905-1.015 1.618 3.045h2.415l-2.675-4.444 2.4-2.757h-2.249l-1.44 1.714-.892 1.33h-.082zM75.6 45.183v7.722h-2.085v-7.722h-2.592V43.33h7.27v1.852zm3.293.521v7.2h2.03v-4.21q0-.63.425-.864.44-.233 1.33-.233h.508v-1.893h-.356q-.425 0-.741.137-.315.123-.549.343a1.8 1.8 0 0 0-.356.507 2.1 2.1 0 0 0-.192.576h-.069v-1.563z' }),
|
|
9
|
+
React.createElement("path", { fillRule: 'evenodd', d: 'M89.573 52.905q-.548 0-.92-.343-.356-.343-.452-.92h-.082q-.165.7-.727 1.07-.563.357-1.385.357-1.084 0-1.66-.576t-.576-1.522q0-1.139.823-1.687.837-.563 2.263-.563h1.139v-.452q0-.522-.275-.823-.275-.316-.919-.316-.603 0-.96.26-.356.262-.59.59l-1.207-1.07q.44-.644 1.097-1 .673-.37 1.811-.37 1.536 0 2.304.671.768.672.768 1.962v3.154h.673v1.578zm-2.812-1.248q.507 0 .864-.22.37-.22.37-.713v-.85h-.987q-1.194 0-1.193.809v.206q0 .397.246.59.247.178.7.178', clipRule: 'evenodd' }),
|
|
10
|
+
React.createElement("path", { d: 'M92.06 45.704v7.2h2.03v-4.663q0-.26.11-.452.11-.207.288-.343.192-.138.425-.192.234-.069.48-.069.563 0 .782.343.22.33.22 1.029v4.348h2.03v-4.513q0-1.371-.577-2.112-.562-.74-1.673-.74-.85 0-1.33.41-.48.413-.673.974h-.082v-1.22zm10.612 7.366q-1.042 0-1.755-.33a4.2 4.2 0 0 1-1.276-.96l1.193-1.207a3.1 3.1 0 0 0 .851.672q.467.247 1.056.247.603 0 .837-.178a.63.63 0 0 0 .233-.508q0-.508-.727-.603l-.782-.096q-2.428-.302-2.428-2.222 0-.521.192-.947.206-.439.563-.74.37-.315.877-.48a3.6 3.6 0 0 1 1.166-.179q.562 0 .988.082.44.07.768.22.343.137.617.356.288.206.563.467l-1.166 1.193a2.5 2.5 0 0 0-.782-.535 2 2 0 0 0-.878-.206q-.52 0-.741.165a.52.52 0 0 0-.219.439q0 .288.151.453.165.15.603.22l.81.109q2.373.315 2.373 2.167 0 .522-.22.96a2.3 2.3 0 0 1-.631.768q-.398.315-.974.494a4.2 4.2 0 0 1-1.262.178m3.772-5.788h1.015v5.624h2.03V47.28h1.44v-1.577h-1.44v-1.372h1.44v-1.577h-1.317q-1.056 0-1.604.535-.549.52-.549 1.563v.85h-1.015z' }),
|
|
11
|
+
React.createElement("path", { fillRule: 'evenodd', d: 'M115.009 53.07a3.9 3.9 0 0 1-1.468-.261 3.2 3.2 0 0 1-1.097-.755 3.4 3.4 0 0 1-.672-1.193 5.2 5.2 0 0 1-.22-1.564q0-.85.22-1.536.22-.7.644-1.193.44-.494 1.07-.755.632-.274 1.44-.274.892 0 1.523.302.645.3 1.042.81.412.505.59 1.179.192.658.192 1.385v.604h-4.622v.11q0 .712.384 1.138.384.411 1.207.411.63 0 1.029-.247.398-.26.74-.617l1.015 1.262q-.48.563-1.262.878-.768.315-1.755.315m-.041-6.036q-.618 0-.974.412-.343.398-.343 1.07v.11h2.524v-.124q0-.659-.302-1.056-.288-.412-.905-.412', clipRule: 'evenodd' }),
|
|
12
|
+
React.createElement("path", { d: 'M119.707 45.704v7.2h2.03v-4.21q0-.63.425-.864.439-.233 1.331-.233H124v-1.893h-.357q-.425 0-.74.137a1.7 1.7 0 0 0-.549.343 1.8 1.8 0 0 0-.357.507 2.2 2.2 0 0 0-.192.576h-.068v-1.563z' }))));
|
|
13
|
+
const ForwardRef = forwardRef(PaymentMethodBankTransferWhiteIcon);
|
|
14
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodDusupayBlackIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#000', d: 'M8.655 43.909q.329.03.746.06h1.044q3.492 0 5.163-1.761 1.7-1.76 1.7-4.864 0-3.252-1.61-4.924-1.612-1.67-5.103-1.67-.478 0-.985.03-.507 0-.955.059zm13.458-6.565q0 2.685-.836 4.685-.835 2-2.387 3.312-1.521 1.313-3.73 1.97-2.208.656-4.953.656-1.253 0-2.925-.12A22.4 22.4 0 0 1 4 47.43V27.288a26 26 0 0 1 3.342-.388q1.76-.12 3.014-.12 2.656 0 4.804.598 2.178.596 3.73 1.88 1.552 1.282 2.387 3.282.836 2 .836 4.804M39.1 47.162q-1.133.327-2.923.596a23 23 0 0 1-3.76.299q-2 0-3.342-.538-1.314-.537-2.09-1.491-.774-.985-1.103-2.328t-.329-2.954v-8.743H30v8.206q0 2.148.567 3.103t2.118.955q.478 0 1.015-.03.537-.06.955-.12V32.004H39.1zm8.68-2.656q1.224 0 1.731-.239.507-.24.507-.925 0-.537-.656-.925-.657-.418-2-.925a22 22 0 0 1-1.91-.806 5.9 5.9 0 0 1-1.431-.984 4.2 4.2 0 0 1-.925-1.403q-.33-.806-.329-1.94 0-2.209 1.641-3.49 1.642-1.284 4.506-1.284 1.432 0 2.746.269 1.312.239 2.088.537l-.776 3.461a16 16 0 0 0-1.7-.477 9 9 0 0 0-2.03-.21q-2.088 0-2.088 1.165 0 .269.09.477.088.21.357.418.27.18.717.417.477.21 1.193.478 1.462.537 2.417 1.074.955.507 1.492 1.134.567.597.776 1.343.24.746.239 1.73 0 2.328-1.76 3.522-1.732 1.193-4.924 1.193-2.09 0-3.492-.358-1.372-.358-1.91-.597l.747-3.61q1.133.447 2.327.716 1.194.24 2.357.239m23.376 2.656q-1.134.327-2.925.596a23 23 0 0 1-3.76.299q-2 0-3.342-.538-1.312-.537-2.088-1.491-.777-.985-1.105-2.328t-.328-2.954v-8.743h4.446v8.206q0 2.148.567 3.103t2.119.955q.477 0 1.014-.03.538-.06.955-.12V32.004h4.447zM81.834 26.78q4.626 0 7.102 1.642 2.477 1.611 2.477 5.311 0 3.73-2.507 5.402-2.506 1.64-7.161 1.64h-1.462V47.7h-4.655V27.318a26 26 0 0 1 3.222-.418q1.701-.12 2.984-.12m.299 3.97q-.507 0-1.015.03-.477.03-.835.059v5.968h1.462q2.417 0 3.64-.657 1.224-.656 1.224-2.446 0-.866-.329-1.433a2.16 2.16 0 0 0-.895-.895q-.567-.358-1.402-.477-.836-.15-1.85-.15m17.815 13.846q.656 0 1.253-.03t.955-.09v-3.371a8 8 0 0 0-.806-.12 9 9 0 0 0-.984-.06q-.627 0-1.194.09-.537.06-.955.269t-.656.567q-.24.358-.24.895 0 1.044.687 1.462.716.388 1.94.388m-.358-13.01q1.97 0 3.282.448 1.313.447 2.089 1.283a4.64 4.64 0 0 1 1.134 2.029q.328 1.193.328 2.656v9.25q-.955.21-2.656.477-1.7.3-4.118.299-1.522 0-2.775-.269-1.222-.268-2.118-.865a4.14 4.14 0 0 1-1.373-1.611q-.477-.986-.477-2.417 0-1.373.537-2.328a4.4 4.4 0 0 1 1.492-1.522 6.4 6.4 0 0 1 2.118-.806q1.194-.268 2.477-.268.865 0 1.522.09.685.06 1.104.178v-.417q0-1.134-.686-1.82-.687-.687-2.388-.687-1.133 0-2.237.18-1.105.148-1.91.447l-.567-3.581q.388-.12.955-.239.596-.15 1.283-.238.686-.12 1.432-.18a14 14 0 0 1 1.552-.089m24.41.418a138 138 0 0 1-2.805 8.504 102 102 0 0 1-3.193 7.699q-.627 1.343-1.253 2.268-.627.955-1.373 1.551a4.5 4.5 0 0 1-1.701.896q-.924.298-2.178.298-1.044 0-1.94-.209a8 8 0 0 1-1.432-.418l.776-3.55a7.6 7.6 0 0 0 1.223.328 7 7 0 0 0 1.134.09q1.194 0 1.821-.657.656-.627 1.104-1.76-1.522-2.985-3.044-6.685-1.522-3.73-2.865-8.355h4.715q.299 1.164.686 2.536.418 1.343.866 2.745.448 1.373.895 2.686.477 1.313.895 2.387.388-1.074.806-2.387t.805-2.686q.419-1.403.776-2.745.389-1.372.687-2.536z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodDusupayBlackIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodDusupayBrandDarkIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#8F298D', d: 'M8.655 43.909q.329.03.746.06h1.044q3.492 0 5.163-1.761 1.7-1.76 1.7-4.864 0-3.252-1.61-4.924-1.612-1.67-5.103-1.67-.478 0-.985.03-.507 0-.955.059zm13.458-6.565q0 2.685-.836 4.685-.835 2-2.387 3.312-1.521 1.313-3.73 1.97-2.208.656-4.953.656-1.253 0-2.925-.12A22.4 22.4 0 0 1 4 47.43V27.288a26 26 0 0 1 3.342-.388q1.76-.12 3.014-.12 2.656 0 4.804.598 2.178.596 3.73 1.88 1.552 1.282 2.387 3.282.836 2 .836 4.804M39.1 47.162q-1.133.327-2.923.596a23 23 0 0 1-3.76.299q-2 0-3.342-.538-1.314-.537-2.09-1.491-.774-.985-1.103-2.328t-.329-2.954v-8.743H30v8.206q0 2.148.567 3.103t2.118.955q.478 0 1.015-.03.537-.06.955-.12V32.004H39.1zm8.68-2.656q1.224 0 1.731-.239.507-.24.507-.925 0-.537-.656-.925-.657-.418-2-.925a22 22 0 0 1-1.91-.806 5.9 5.9 0 0 1-1.431-.984 4.2 4.2 0 0 1-.925-1.403q-.33-.806-.329-1.94 0-2.209 1.641-3.49 1.642-1.284 4.506-1.284 1.432 0 2.746.269 1.312.239 2.088.537l-.776 3.461a16 16 0 0 0-1.7-.477 9 9 0 0 0-2.03-.21q-2.088 0-2.088 1.165 0 .269.09.477.088.21.357.418.27.18.717.417.477.21 1.193.478 1.462.537 2.417 1.074.955.507 1.492 1.134.567.597.776 1.343.24.746.239 1.73 0 2.328-1.76 3.522-1.732 1.193-4.924 1.193-2.09 0-3.492-.358-1.372-.358-1.91-.597l.747-3.61q1.133.447 2.327.716 1.194.24 2.357.239m23.376 2.656q-1.134.327-2.925.596a23 23 0 0 1-3.76.299q-2 0-3.342-.538-1.312-.537-2.088-1.491-.777-.985-1.105-2.328t-.328-2.954v-8.743h4.446v8.206q0 2.148.567 3.103t2.119.955q.477 0 1.014-.03.538-.06.955-.12V32.004h4.447z' }),
|
|
6
|
+
React.createElement("path", { fill: '#F6C842', d: 'M81.834 26.78q4.626 0 7.102 1.642 2.477 1.611 2.477 5.311 0 3.73-2.507 5.402-2.506 1.64-7.161 1.64h-1.462V47.7h-4.655V27.318a26 26 0 0 1 3.222-.418q1.701-.12 2.984-.12m.299 3.97q-.507 0-1.015.03-.477.03-.835.059v5.968h1.462q2.417 0 3.64-.657 1.224-.656 1.224-2.446 0-.866-.329-1.433a2.16 2.16 0 0 0-.895-.895q-.567-.358-1.402-.477-.836-.15-1.85-.15m17.815 13.846q.656 0 1.253-.03t.955-.09v-3.371a8 8 0 0 0-.806-.12 9 9 0 0 0-.984-.06q-.627 0-1.194.09-.537.06-.955.269t-.656.567q-.24.358-.24.895 0 1.044.687 1.462.716.388 1.94.388m-.358-13.01q1.97 0 3.282.448 1.313.447 2.089 1.283a4.64 4.64 0 0 1 1.134 2.029q.328 1.193.328 2.656v9.25q-.955.21-2.656.477-1.7.3-4.118.299-1.522 0-2.775-.269-1.222-.268-2.118-.865a4.14 4.14 0 0 1-1.373-1.611q-.477-.986-.477-2.417 0-1.373.537-2.328a4.4 4.4 0 0 1 1.492-1.522 6.4 6.4 0 0 1 2.118-.806q1.194-.268 2.477-.268.865 0 1.522.09.685.06 1.104.178v-.417q0-1.134-.686-1.82-.687-.687-2.388-.687-1.133 0-2.237.18-1.105.148-1.91.447l-.567-3.581q.388-.12.955-.239.596-.15 1.283-.238.686-.12 1.432-.18a14 14 0 0 1 1.552-.089m24.41.418a138 138 0 0 1-2.805 8.504 102 102 0 0 1-3.193 7.699q-.627 1.343-1.253 2.268-.627.955-1.373 1.551a4.5 4.5 0 0 1-1.701.896q-.924.298-2.178.298-1.044 0-1.94-.209a8 8 0 0 1-1.432-.418l.776-3.55a7.6 7.6 0 0 0 1.223.328 7 7 0 0 0 1.134.09q1.194 0 1.821-.657.656-.627 1.104-1.76-1.522-2.985-3.044-6.685-1.522-3.73-2.865-8.355h4.715q.299 1.164.686 2.536.418 1.343.866 2.745.448 1.373.895 2.686.477 1.313.895 2.387.388-1.074.806-2.387t.805-2.686q.419-1.403.776-2.745.389-1.372.687-2.536z' })));
|
|
7
|
+
const ForwardRef = forwardRef(PaymentMethodDusupayBrandDarkIcon);
|
|
8
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodDusupayBrandIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#8F298D', d: 'M8.655 43.91q.329.029.746.059h1.044q3.492 0 5.163-1.76 1.7-1.761 1.7-4.865 0-3.253-1.61-4.923-1.612-1.671-5.103-1.671-.478 0-.985.03-.507 0-.955.06zm13.458-6.566q0 2.685-.836 4.685-.835 2-2.387 3.313-1.521 1.312-3.73 1.969t-4.953.656q-1.253 0-2.925-.119A22.4 22.4 0 0 1 4 47.43V27.288a26 26 0 0 1 3.342-.388q1.76-.12 3.014-.119 2.656 0 4.804.597 2.178.596 3.73 1.88t2.387 3.282q.836 2 .836 4.804M39.1 47.162q-1.133.328-2.923.596a23 23 0 0 1-3.76.299q-2 0-3.342-.537-1.314-.538-2.09-1.492-.774-.985-1.103-2.328t-.329-2.954v-8.743H30v8.206q0 2.148.567 3.103t2.118.955q.478 0 1.015-.03.537-.06.955-.119V32.003H39.1zm8.68-2.656q1.224 0 1.731-.239.507-.238.507-.925 0-.537-.656-.925-.657-.417-2-.925a22 22 0 0 1-1.91-.806 5.9 5.9 0 0 1-1.431-.984 4.2 4.2 0 0 1-.925-1.403q-.33-.805-.329-1.94 0-2.207 1.641-3.49t4.506-1.284q1.432 0 2.746.269 1.312.238 2.088.537l-.776 3.461a16 16 0 0 0-1.7-.477 9 9 0 0 0-2.03-.209q-2.088 0-2.088 1.164 0 .268.09.477.088.21.357.418.27.18.717.418.477.209 1.193.477 1.462.537 2.417 1.074.955.508 1.492 1.134.567.597.776 1.343.24.746.239 1.73 0 2.328-1.76 3.522-1.732 1.194-4.924 1.194-2.09 0-3.492-.358-1.372-.36-1.91-.597l.747-3.61q1.133.446 2.327.715 1.194.24 2.357.239m23.376 2.656q-1.134.328-2.925.596a23 23 0 0 1-3.76.299q-2 0-3.342-.537-1.312-.538-2.088-1.492-.777-.985-1.105-2.328t-.328-2.954v-8.743h4.446v8.206q0 2.148.567 3.103t2.119.955q.477 0 1.014-.03.538-.06.955-.119V32.003h4.447z' }),
|
|
6
|
+
React.createElement("path", { fill: '#F6C842', d: 'M81.834 26.781q4.626 0 7.102 1.641 2.477 1.611 2.477 5.312 0 3.73-2.507 5.4-2.506 1.642-7.161 1.642h-1.462v6.923h-4.655v-20.38a26 26 0 0 1 3.222-.419q1.701-.12 2.984-.119m.299 3.969q-.507 0-1.015.03-.477.03-.835.06v5.967h1.462q2.417 0 3.64-.656 1.224-.657 1.224-2.447 0-.865-.329-1.432a2.16 2.16 0 0 0-.895-.896q-.567-.358-1.402-.477-.836-.15-1.85-.15m17.815 13.847q.656 0 1.253-.03t.955-.09v-3.372a8 8 0 0 0-.806-.12 9 9 0 0 0-.984-.059q-.627 0-1.194.09-.537.06-.955.268-.417.21-.656.567-.24.358-.24.895 0 1.045.687 1.463.716.387 1.94.388m-.358-13.01q1.97 0 3.282.447t2.089 1.283a4.64 4.64 0 0 1 1.134 2.03q.328 1.192.328 2.655v9.25q-.955.21-2.656.478-1.7.298-4.118.298-1.522 0-2.775-.269-1.222-.267-2.118-.865a4.14 4.14 0 0 1-1.373-1.611q-.477-.985-.477-2.417 0-1.373.537-2.328a4.4 4.4 0 0 1 1.492-1.522 6.4 6.4 0 0 1 2.118-.805 11.3 11.3 0 0 1 2.477-.269q.865 0 1.522.09.685.06 1.104.179v-.418q0-1.134-.686-1.82-.687-.687-2.388-.687-1.133 0-2.237.18-1.105.148-1.91.447l-.567-3.58q.388-.12.955-.24.596-.148 1.283-.238.686-.12 1.432-.18a14 14 0 0 1 1.552-.089m24.41.418a138 138 0 0 1-2.805 8.504 102 102 0 0 1-3.193 7.7q-.627 1.341-1.253 2.267-.627.955-1.373 1.552a4.5 4.5 0 0 1-1.701.895q-.924.298-2.178.298a8.5 8.5 0 0 1-1.94-.209 8 8 0 0 1-1.432-.417l.776-3.551q.687.238 1.223.328.538.09 1.134.09 1.194 0 1.821-.657.656-.627 1.104-1.76-1.522-2.985-3.044-6.685-1.522-3.729-2.865-8.355h4.715q.299 1.164.686 2.536.418 1.343.866 2.746.448 1.373.895 2.685.477 1.313.895 2.388.388-1.075.806-2.388t.805-2.685q.419-1.402.776-2.746.389-1.372.687-2.536z' })));
|
|
7
|
+
const ForwardRef = forwardRef(PaymentMethodDusupayBrandIcon);
|
|
8
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodDusupayWhiteIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#fff', d: 'M8.655 43.909q.329.03.746.06h1.044q3.492 0 5.163-1.761 1.7-1.76 1.7-4.864 0-3.252-1.61-4.924-1.612-1.67-5.103-1.67-.478 0-.985.03-.507 0-.955.059zm13.458-6.565q0 2.685-.836 4.685-.835 2-2.387 3.312-1.521 1.313-3.73 1.97-2.208.656-4.953.656-1.253 0-2.925-.12A22.4 22.4 0 0 1 4 47.43V27.288a26 26 0 0 1 3.342-.388q1.76-.12 3.014-.12 2.656 0 4.804.598 2.178.596 3.73 1.88 1.552 1.282 2.387 3.282.836 2 .836 4.804M39.1 47.162q-1.133.327-2.923.596a23 23 0 0 1-3.76.299q-2 0-3.342-.538-1.314-.537-2.09-1.491-.774-.985-1.103-2.328t-.329-2.954v-8.743H30v8.206q0 2.148.567 3.103t2.118.955q.478 0 1.015-.03.537-.06.955-.12V32.004H39.1zm8.68-2.656q1.224 0 1.731-.239.507-.24.507-.925 0-.537-.656-.925-.657-.418-2-.925a22 22 0 0 1-1.91-.806 5.9 5.9 0 0 1-1.431-.984 4.2 4.2 0 0 1-.925-1.403q-.33-.806-.329-1.94 0-2.209 1.641-3.49 1.642-1.284 4.506-1.284 1.432 0 2.746.269 1.312.239 2.088.537l-.776 3.461a16 16 0 0 0-1.7-.477 9 9 0 0 0-2.03-.21q-2.088 0-2.088 1.165 0 .269.09.477.088.21.357.418.27.18.717.417.477.21 1.193.478 1.462.537 2.417 1.074.955.507 1.492 1.134.567.597.776 1.343.24.746.239 1.73 0 2.328-1.76 3.522-1.732 1.193-4.924 1.193-2.09 0-3.492-.358-1.372-.358-1.91-.597l.747-3.61q1.133.447 2.327.716 1.194.24 2.357.239m23.376 2.656q-1.134.327-2.925.596a23 23 0 0 1-3.76.299q-2 0-3.342-.538-1.312-.537-2.088-1.491-.777-.985-1.105-2.328t-.328-2.954v-8.743h4.446v8.206q0 2.148.567 3.103t2.119.955q.477 0 1.014-.03.538-.06.955-.12V32.004h4.447zM81.834 26.78q4.626 0 7.102 1.642 2.477 1.611 2.477 5.311 0 3.73-2.507 5.402-2.506 1.64-7.161 1.64h-1.462V47.7h-4.655V27.318a26 26 0 0 1 3.222-.418q1.701-.12 2.984-.12m.299 3.97q-.507 0-1.015.03-.477.03-.835.059v5.968h1.462q2.417 0 3.64-.657 1.224-.656 1.224-2.446 0-.866-.329-1.433a2.16 2.16 0 0 0-.895-.895q-.567-.358-1.402-.477-.836-.15-1.85-.15m17.815 13.846q.656 0 1.253-.03t.955-.09v-3.371a8 8 0 0 0-.806-.12 9 9 0 0 0-.984-.06q-.627 0-1.194.09-.537.06-.955.269t-.656.567q-.24.358-.24.895 0 1.044.687 1.462.716.388 1.94.388m-.358-13.01q1.97 0 3.282.448 1.313.447 2.089 1.283a4.64 4.64 0 0 1 1.134 2.029q.328 1.193.328 2.656v9.25q-.955.21-2.656.477-1.7.3-4.118.299-1.522 0-2.775-.269-1.222-.268-2.118-.865a4.14 4.14 0 0 1-1.373-1.611q-.477-.986-.477-2.417 0-1.373.537-2.328a4.4 4.4 0 0 1 1.492-1.522 6.4 6.4 0 0 1 2.118-.806q1.194-.268 2.477-.268.865 0 1.522.09.685.06 1.104.178v-.417q0-1.134-.686-1.82-.687-.687-2.388-.687-1.133 0-2.237.18-1.105.148-1.91.447l-.567-3.581q.388-.12.955-.239.596-.15 1.283-.238.686-.12 1.432-.18a14 14 0 0 1 1.552-.089m24.41.418a138 138 0 0 1-2.805 8.504 102 102 0 0 1-3.193 7.699q-.627 1.343-1.253 2.268-.627.955-1.373 1.551a4.5 4.5 0 0 1-1.701.896q-.924.298-2.178.298-1.044 0-1.94-.209a8 8 0 0 1-1.432-.418l.776-3.55a7.6 7.6 0 0 0 1.223.328 7 7 0 0 0 1.134.09q1.194 0 1.821-.657.656-.627 1.104-1.76-1.522-2.985-3.044-6.685-1.522-3.73-2.865-8.355h4.715q.299 1.164.686 2.536.418 1.343.866 2.745.448 1.373.895 2.686.477 1.313.895 2.387.388-1.074.806-2.387t.805-2.686q.419-1.403.776-2.745.389-1.372.687-2.536z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodDusupayWhiteIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodJetonbankBlackIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#000', d: 'M46.41 34.75c-3.738 0-6.768 3.061-6.768 6.836s3.03 6.836 6.767 6.836 6.768-3.061 6.768-6.836-3.03-6.836-6.768-6.836m0 10.46c-1.98 0-3.588-1.617-3.588-3.624 0-2.006 1.601-3.624 3.587-3.624s3.588 1.618 3.588 3.624-1.601 3.624-3.588 3.624m-37.69-.253H4v3.211h5.22c.849 0 1.571-.293 2.136-.864q.858-.869.856-2.189V31.562H8.899v13.196c0 .103-.086.19-.189.19zm25.437-13.395h-3.18v3.458h-2.684v3.053h2.684v7.042c0 .873.29 1.61.872 2.189.58.579 1.303.864 2.151.864h4.514v-3.053h-4.169a.19.19 0 0 1-.188-.19v-6.852h4.365V35.02h-4.365zm31.913 4.322c-.573-.579-1.296-.864-2.167-.864h-8.793v13.148h3.156v-9.905c0-.103.086-.19.188-.19h5.103c.102 0 .189.087.189.19v9.905h3.18V38.073c0-.872-.291-1.61-.856-2.189m42.268 0c-.573-.579-1.295-.864-2.166-.864h-8.793v13.148h3.156v-9.905c0-.103.086-.19.188-.19h5.103c.103 0 .189.087.189.19v9.905h3.179V38.073c0-.872-.29-1.61-.856-2.189m-25.561 5.694c0 3.846-2.74 6.852-6.257 6.852-1.727 0-3.462-.666-4.153-1.856v1.587h-3.14V31.562h3.14v5.036c.69-1.182 2.426-1.848 4.153-1.848 3.51 0 6.257 3.014 6.257 6.828m-2.928 0c0-2.284-1.704-3.98-3.941-3.98-1.492 0-2.898.832-3.541 1.99v4.028c.636 1.127 2.072 1.96 3.54 1.96 2.238 0 3.942-1.722 3.942-4.006zm15.23-6.558v13.148h-3.14v-1.427c-.825 1.237-2.529 1.697-3.997 1.697-2.551 0-4.255-1.697-4.255-3.981 0-2.688 2.426-4.544 6.179-4.544h2.072v-1.65a.19.19 0 0 0-.188-.19h-7.129V35.02zm-3.14 9.088v-1.935h-2.183c-2.05 0-3.274.698-3.274 1.911 0 1.079.8 1.745 2.073 1.745s2.638-.595 3.383-1.721m22.698-1.958v6.018h-3.141V31.562h3.141V40.5l5.087-5.48h3.879l-5.866 6.185a.2.2 0 0 0 0 .27L124 48.168h-4.02zm-90.67-6.56a6.24 6.24 0 0 0-3.171-.832 6.55 6.55 0 0 0-3.376.904 6.6 6.6 0 0 0-2.434 2.45 6.8 6.8 0 0 0-.895 3.427c0 1.245.306 2.466.903 3.505a6.66 6.66 0 0 0 2.45 2.482q1.544.914 3.407.912c1.334 0 2.527-.254 3.556-.753 1.028-.5 1.798-1.214 2.277-2.11l.055-.11-2.513-1.531-.062.119c-.267.483-.7.88-1.288 1.173a4.4 4.4 0 0 1-1.97.452c-.99 0-1.83-.293-2.49-.864q-.941-.822-1.224-2.252h9.743l.023-.103c.071-.357.11-.841.11-1.42 0-1.158-.274-2.229-.824-3.18a6.2 6.2 0 0 0-2.269-2.26zm-6.54 4.172a3.33 3.33 0 0 1 1.076-1.435c.581-.452 1.303-.682 2.143-.682s1.555.238 2.136.713c.47.381.808.857.997 1.412h-6.352z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodJetonbankBlackIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodJetonbankBrandDarkIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#D0331C', d: 'M46.41 34.75c-3.738 0-6.768 3.061-6.768 6.836s3.03 6.836 6.767 6.836 6.768-3.061 6.768-6.836-3.03-6.836-6.768-6.836m0 10.46c-1.98 0-3.588-1.617-3.588-3.624 0-2.006 1.601-3.624 3.587-3.624s3.588 1.618 3.588 3.624-1.601 3.624-3.588 3.624m-37.69-.253H4v3.211h5.22c.849 0 1.571-.293 2.136-.864q.858-.869.856-2.189V31.562H8.899v13.196c0 .103-.086.19-.189.19zm25.437-13.395h-3.18v3.458h-2.684v3.053h2.684v7.042c0 .873.29 1.61.872 2.189.58.579 1.303.864 2.151.864h4.514v-3.053h-4.169a.19.19 0 0 1-.188-.19v-6.852h4.365V35.02h-4.365zm31.913 4.322c-.573-.579-1.296-.864-2.167-.864h-8.793v13.148h3.156v-9.905c0-.103.086-.19.188-.19h5.103c.102 0 .189.087.189.19v9.905h3.18V38.073c0-.872-.291-1.61-.856-2.189m42.268 0c-.573-.579-1.295-.864-2.166-.864h-8.793v13.148h3.156v-9.905c0-.103.086-.19.188-.19h5.103c.103 0 .189.087.189.19v9.905h3.179V38.073c0-.872-.29-1.61-.856-2.189m-25.561 5.694c0 3.846-2.74 6.852-6.257 6.852-1.727 0-3.462-.666-4.153-1.856v1.587h-3.14V31.562h3.14v5.036c.69-1.182 2.426-1.848 4.153-1.848 3.51 0 6.257 3.014 6.257 6.828m-2.928 0c0-2.284-1.704-3.98-3.941-3.98-1.492 0-2.898.832-3.541 1.99v4.028c.636 1.127 2.072 1.96 3.54 1.96 2.238 0 3.942-1.722 3.942-4.006zm15.23-6.558v13.148h-3.14v-1.427c-.825 1.237-2.529 1.697-3.997 1.697-2.551 0-4.255-1.697-4.255-3.981 0-2.688 2.426-4.544 6.179-4.544h2.072v-1.65a.19.19 0 0 0-.188-.19h-7.129V35.02zm-3.14 9.088v-1.935h-2.183c-2.05 0-3.274.698-3.274 1.911 0 1.079.8 1.745 2.073 1.745s2.638-.595 3.383-1.721m22.698-1.958v6.018h-3.141V31.562h3.141V40.5l5.087-5.48h3.879l-5.866 6.185a.2.2 0 0 0 0 .27L124 48.168h-4.02zm-90.67-6.56a6.24 6.24 0 0 0-3.171-.832 6.55 6.55 0 0 0-3.376.904 6.6 6.6 0 0 0-2.434 2.45 6.8 6.8 0 0 0-.895 3.427c0 1.245.306 2.466.903 3.505a6.66 6.66 0 0 0 2.45 2.482q1.544.914 3.407.912c1.334 0 2.527-.254 3.556-.753 1.028-.5 1.798-1.214 2.277-2.11l.055-.11-2.513-1.531-.062.119c-.267.483-.7.88-1.288 1.173a4.4 4.4 0 0 1-1.97.452c-.99 0-1.83-.293-2.49-.864q-.941-.822-1.224-2.252h9.743l.023-.103c.071-.357.11-.841.11-1.42 0-1.158-.274-2.229-.824-3.18a6.2 6.2 0 0 0-2.269-2.26zm-6.54 4.172a3.33 3.33 0 0 1 1.076-1.435c.581-.452 1.303-.682 2.143-.682s1.555.238 2.136.713c.47.381.808.857.997 1.412h-6.352z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodJetonbankBrandDarkIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodJetonbankBrandIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#D0331C', d: 'M46.41 34.75c-3.738 0-6.768 3.061-6.768 6.836s3.03 6.836 6.767 6.836 6.768-3.061 6.768-6.836-3.03-6.836-6.768-6.836m0 10.46c-1.98 0-3.588-1.617-3.588-3.624 0-2.006 1.601-3.624 3.587-3.624s3.588 1.618 3.588 3.624-1.601 3.624-3.588 3.624m-37.69-.253H4v3.211h5.22c.849 0 1.571-.293 2.136-.864q.858-.869.856-2.189V31.562H8.899v13.196c0 .103-.086.19-.189.19zm25.437-13.395h-3.18v3.458h-2.684v3.053h2.684v7.042c0 .873.29 1.61.872 2.189.58.579 1.303.864 2.151.864h4.514v-3.053h-4.169a.19.19 0 0 1-.188-.19v-6.852h4.365V35.02h-4.365zm31.913 4.322c-.573-.579-1.296-.864-2.167-.864h-8.793v13.148h3.156v-9.905c0-.103.086-.19.188-.19h5.103c.102 0 .189.087.189.19v9.905h3.18V38.073c0-.872-.291-1.61-.856-2.189m42.268 0c-.573-.579-1.295-.864-2.166-.864h-8.793v13.148h3.156v-9.905c0-.103.086-.19.188-.19h5.103c.103 0 .189.087.189.19v9.905h3.179V38.073c0-.872-.29-1.61-.856-2.189m-25.561 5.694c0 3.846-2.74 6.852-6.257 6.852-1.727 0-3.462-.666-4.153-1.856v1.587h-3.14V31.562h3.14v5.036c.69-1.182 2.426-1.848 4.153-1.848 3.51 0 6.257 3.014 6.257 6.828m-2.928 0c0-2.284-1.704-3.98-3.941-3.98-1.492 0-2.898.832-3.541 1.99v4.028c.636 1.127 2.072 1.96 3.54 1.96 2.238 0 3.942-1.722 3.942-4.006zm15.23-6.558v13.148h-3.14v-1.427c-.825 1.237-2.529 1.697-3.997 1.697-2.551 0-4.255-1.697-4.255-3.981 0-2.688 2.426-4.544 6.179-4.544h2.072v-1.65a.19.19 0 0 0-.188-.19h-7.129V35.02zm-3.14 9.088v-1.935h-2.183c-2.05 0-3.274.698-3.274 1.911 0 1.079.8 1.745 2.073 1.745s2.638-.595 3.383-1.721m22.698-1.958v6.018h-3.141V31.562h3.141V40.5l5.087-5.48h3.879l-5.866 6.185a.2.2 0 0 0 0 .27L124 48.168h-4.02zm-90.67-6.56a6.24 6.24 0 0 0-3.171-.832 6.55 6.55 0 0 0-3.376.904 6.6 6.6 0 0 0-2.434 2.45 6.8 6.8 0 0 0-.895 3.427c0 1.245.306 2.466.903 3.505a6.66 6.66 0 0 0 2.45 2.482q1.544.914 3.407.912c1.334 0 2.527-.254 3.556-.753 1.028-.5 1.798-1.214 2.277-2.11l.055-.11-2.513-1.531-.062.119c-.267.483-.7.88-1.288 1.173a4.4 4.4 0 0 1-1.97.452c-.99 0-1.83-.293-2.49-.864q-.941-.822-1.224-2.252h9.743l.023-.103c.071-.357.11-.841.11-1.42 0-1.158-.274-2.229-.824-3.18a6.2 6.2 0 0 0-2.269-2.26zm-6.54 4.172a3.33 3.33 0 0 1 1.076-1.435c.581-.452 1.303-.682 2.143-.682s1.555.238 2.136.713c.47.381.808.857.997 1.412h-6.352z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodJetonbankBrandIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodJetonbankWhiteIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#fff', d: 'M46.41 34.75c-3.738 0-6.768 3.061-6.768 6.836s3.03 6.836 6.767 6.836 6.768-3.061 6.768-6.836-3.03-6.836-6.768-6.836m0 10.46c-1.98 0-3.588-1.617-3.588-3.624 0-2.006 1.601-3.624 3.587-3.624s3.588 1.618 3.588 3.624-1.601 3.624-3.588 3.624m-37.69-.253H4v3.211h5.22c.849 0 1.571-.293 2.136-.864q.858-.869.856-2.189V31.562H8.899v13.196c0 .103-.086.19-.189.19zm25.437-13.395h-3.18v3.458h-2.684v3.053h2.684v7.042c0 .873.29 1.61.872 2.189.58.579 1.303.864 2.151.864h4.514v-3.053h-4.169a.19.19 0 0 1-.188-.19v-6.852h4.365V35.02h-4.365zm31.913 4.322c-.573-.579-1.296-.864-2.167-.864h-8.793v13.148h3.156v-9.905c0-.103.086-.19.188-.19h5.103c.102 0 .189.087.189.19v9.905h3.18V38.073c0-.872-.291-1.61-.856-2.189m42.268 0c-.573-.579-1.295-.864-2.166-.864h-8.793v13.148h3.156v-9.905c0-.103.086-.19.188-.19h5.103c.103 0 .189.087.189.19v9.905h3.179V38.073c0-.872-.29-1.61-.856-2.189m-25.561 5.694c0 3.846-2.74 6.852-6.257 6.852-1.727 0-3.462-.666-4.153-1.856v1.587h-3.14V31.562h3.14v5.036c.69-1.182 2.426-1.848 4.153-1.848 3.51 0 6.257 3.014 6.257 6.828m-2.928 0c0-2.284-1.704-3.98-3.941-3.98-1.492 0-2.898.832-3.541 1.99v4.028c.636 1.127 2.072 1.96 3.54 1.96 2.238 0 3.942-1.722 3.942-4.006zm15.23-6.558v13.148h-3.14v-1.427c-.825 1.237-2.529 1.697-3.997 1.697-2.551 0-4.255-1.697-4.255-3.981 0-2.688 2.426-4.544 6.179-4.544h2.072v-1.65a.19.19 0 0 0-.188-.19h-7.129V35.02zm-3.14 9.088v-1.935h-2.183c-2.05 0-3.274.698-3.274 1.911 0 1.079.8 1.745 2.073 1.745s2.638-.595 3.383-1.721m22.698-1.958v6.018h-3.141V31.562h3.141V40.5l5.087-5.48h3.879l-5.866 6.185a.2.2 0 0 0 0 .27L124 48.168h-4.02zm-90.67-6.56a6.24 6.24 0 0 0-3.171-.832 6.55 6.55 0 0 0-3.376.904 6.6 6.6 0 0 0-2.434 2.45 6.8 6.8 0 0 0-.895 3.427c0 1.245.306 2.466.903 3.505a6.66 6.66 0 0 0 2.45 2.482q1.544.914 3.407.912c1.334 0 2.527-.254 3.556-.753 1.028-.5 1.798-1.214 2.277-2.11l.055-.11-2.513-1.531-.062.119c-.267.483-.7.88-1.288 1.173a4.4 4.4 0 0 1-1.97.452c-.99 0-1.83-.293-2.49-.864q-.941-.822-1.224-2.252h9.743l.023-.103c.071-.357.11-.841.11-1.42 0-1.158-.274-2.229-.824-3.18a6.2 6.2 0 0 0-2.269-2.26zm-6.54 4.172a3.33 3.33 0 0 1 1.076-1.435c.581-.452 1.303-.682 2.143-.682s1.555.238 2.136.713c.47.381.808.857.997 1.412h-6.352z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodJetonbankWhiteIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodMtnBlackIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#000', d: 'M64 20c-22.091 0-40 8.954-40 20s17.909 20 40 20 40-8.954 40-20-17.909-20-40-20m0 36.843c-20.347 0-36.842-7.541-36.842-16.843S43.653 23.158 64 23.158s36.842 7.54 36.842 16.842S84.347 56.843 64 56.843M58.956 36.49v-3.158H70.24v3.158h-4.062v10.176h-3.16V36.49zm24.905-3.158v13.334h-3.157l-5.727-7.938v7.938h-3.158V33.333h3.158l5.727 7.938v-7.938zM44.045 46.667V33.333h3.157l3.509 5.396 3.508-5.396h3.156v13.334h-3.156v-7.542l-2.395 3.681h-2.227l-2.395-3.681v7.542z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodMtnBlackIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodMtnBrandDarkIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#FFCB05', d: 'M64 20c-22.091 0-40 8.954-40 20s17.909 20 40 20 40-8.954 40-20-17.909-20-40-20m0 36.843c-20.347 0-36.842-7.541-36.842-16.843S43.653 23.158 64 23.158s36.842 7.54 36.842 16.842S84.347 56.843 64 56.843M58.956 36.49v-3.158H70.24v3.158h-4.062v10.176h-3.16V36.49zm24.905-3.158v13.334h-3.157l-5.727-7.938v7.938h-3.158V33.333h3.158l5.727 7.938v-7.938zM44.045 46.667V33.333h3.157l3.509 5.396 3.508-5.396h3.156v13.334h-3.156v-7.542l-2.395 3.681h-2.227l-2.395-3.681v7.542z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodMtnBrandDarkIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodMtnWhiteIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#fff', d: 'M64 20c-22.091 0-40 8.954-40 20s17.909 20 40 20 40-8.954 40-20-17.909-20-40-20m0 36.843c-20.347 0-36.842-7.541-36.842-16.843S43.653 23.158 64 23.158s36.842 7.54 36.842 16.842S84.347 56.843 64 56.843M58.956 36.49v-3.158H70.24v3.158h-4.062v10.176h-3.16V36.49zm24.905-3.158v13.334h-3.157l-5.727-7.938v7.938h-3.158V33.333h3.158l5.727 7.938v-7.938zM44.045 46.667V33.333h3.157l3.509 5.396 3.508-5.396h3.156v13.334h-3.156v-7.542l-2.395 3.681h-2.227l-2.395-3.681v7.542z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodMtnWhiteIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodSpeiBrandDarkIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#303992', d: 'M15.093 45.688 4 46.383q.489 5.715 4.195 9.42 3.706 3.707 13.333 3.707 5.481 0 9.085-1.57 3.604-1.596 5.611-4.659 2.008-3.063 2.008-6.692 0-3.088-1.519-5.585-1.493-2.496-4.813-4.17-3.294-1.698-10.939-3.346-3.088-.642-3.912-1.39-.85-.72-.85-1.62 0-1.237 1.03-2.086 1.03-.875 3.063-.875 2.47 0 3.86 1.158 1.417 1.159 1.854 3.707l10.99-.644q-.72-5.868-4.53-8.545-3.783-2.702-11.016-2.702-5.893 0-9.291 1.492-3.372 1.468-5.07 4.067-1.674 2.574-1.673 5.482 0 4.428 3.294 7.284 3.269 2.857 10.939 4.582 4.684 1.029 5.971 2.187 1.287 1.159 1.287 2.626 0 1.545-1.364 2.728-1.338 1.158-3.835 1.158-3.346 0-5.148-2.29-1.107-1.416-1.467-4.119' }),
|
|
6
|
+
React.createElement("path", { fill: '#303992', fillRule: 'evenodd', d: 'M60.561 21.134h-19.38v37.732h11.71V44.865h6.383q7.053 0 10.476-3.218 3.449-3.216 3.449-8.93 0-5.56-3.166-8.571-3.14-3.012-9.472-3.012M55.748 37.22h-2.857v-8.416h3.32q3.27 0 4.453 1.236 1.185 1.235 1.184 3.01 0 1.83-1.364 3.012-1.364 1.158-4.736 1.158', clipRule: 'evenodd' }),
|
|
7
|
+
React.createElement("path", { fill: '#303992', d: 'M124 21.134h-11.685V32.51h4.942v-8.236L124 32.055zm0 20.068-6.743 7.78v-8.235h-4.942v18.12H124z' }),
|
|
8
|
+
React.createElement("path", { fill: '#F6861E', d: 'M76.104 21.134h31.246v9.141H87.79v4.912h18.145v7.334H87.789v8.523h20.127v7.822H76.104z' })));
|
|
9
|
+
const ForwardRef = forwardRef(PaymentMethodSpeiBrandDarkIcon);
|
|
10
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodVoletBlackIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#000', d: 'm114.507 46.772-4.606-.86c-.099 1.087-.379 2.027-.838 2.581-.459.555-1.292.842-2.113.842a2.66 2.66 0 0 1-1.899-.724q-.766-.715-.765-2.152V39.4h8.633v-5.705h-8.633V28.51H98.02v17.847q0 3.81 2.218 6.11 2.22 2.298 6.609 2.303c2.498 0 4.64-.692 6.137-2.078a8 8 0 0 0 1.523-1.92 10.4 10.4 0 0 0 1.214-3.765zM53.803 36.255A11.5 11.5 0 0 0 49.46 31.9q-2.712-1.593-6.317-1.584-3.551 0-6.316 1.584a11.5 11.5 0 0 0-4.342 4.355q-1.577 2.772-1.58 6.286 0 3.514 1.574 6.29a11.5 11.5 0 0 0 4.343 4.345q2.763 1.592 6.315 1.592 3.609 0 6.318-1.584a11.5 11.5 0 0 0 4.348-4.352q1.579-2.772 1.579-6.286t-1.58-6.29m-5.385 9.826a6.24 6.24 0 0 1-2.165 2.424 6.16 6.16 0 0 1-6.218 0 6.24 6.24 0 0 1-2.165-2.424q-.791-1.582-.79-3.688.001-2.107.79-3.688a5.8 5.8 0 0 1 2.165-2.424 6.16 6.16 0 0 1 6.218 0 5.8 5.8 0 0 1 2.165 2.424q.79 1.578.79 3.688-.002 2.11-.79 3.688m40.528-.725q-.497 1.836-1.826 2.925t-3.651 1.088a7.7 7.7 0 0 1-2.96-.593 5.73 5.73 0 0 1-2.272-1.883q-.838-1.288-.937-3.168h15.94q.1-.692.143-1.385.097-.739.099-1.485 0-3.266-1.382-5.593a9.13 9.13 0 0 0-3.753-3.663q-2.413-1.284-5.674-1.284-3.503 0-6.119 1.633a11.55 11.55 0 0 0-4.095 4.355q-1.43 2.722-1.43 6.082 0 3.765 1.578 6.583a11.05 11.05 0 0 0 4.392 4.307q2.82 1.492 6.42 1.492 4.244 0 6.957-1.979 2.765-1.98 3.898-5.346zm-9.682-8.905a5.7 5.7 0 0 1 3.356-1.043 5.9 5.9 0 0 1 2.467.474c.675.248 1.26.694 1.678 1.281.444.57.687 1.27.691 1.993a.7.7 0 0 1-.05.237H77.383c.33-1.293.894-2.273 1.88-2.938zM56.867 54.27l7.371-29.04H70.9l-7.37 29.04zM10.662 30.809l6.365 17.465 6.704-17.465h6.662l-9.516 23.456h-7.651L4 30.81zm110.624 23.959a2.65 2.65 0 0 1-1.383-.368 2.74 2.74 0 0 1-1.33-2.348 2.74 2.74 0 0 1 1.33-2.348 2.8 2.8 0 0 1 2.772 0 2.7 2.7 0 0 1 .97.984 2.8 2.8 0 0 1 0 2.728 2.7 2.7 0 0 1-.964.984c-.422.25-.905.378-1.395.368m0-.64c.37.007.734-.09 1.053-.28a2.08 2.08 0 0 0 1.01-1.796 2.05 2.05 0 0 0-.265-1.043 2.1 2.1 0 0 0-.739-.747 2.11 2.11 0 0 0-2.105-.007 2.1 2.1 0 0 0-.733.747 2.087 2.087 0 0 0 .733 2.84c.316.19.679.287 1.046.283zm.021-.757a1.344 1.344 0 0 1-1.316-1.352c.001-.234.062-.464.178-.667a1.29 1.29 0 0 1 1.107-.62c.278-.009.553.07.784.225.226.17.376.42.42.7l-.546.162a.67.67 0 0 0-.217-.412.65.65 0 0 0-.433-.156.72.72 0 0 0-.486.197.8.8 0 0 0-.212.869.79.79 0 0 0 .728.517.67.67 0 0 0 .531-.199.9.9 0 0 0 .218-.482l.525.194c-.067.298-.23.565-.464.76-.234.18-.523.272-.817.26z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodVoletBlackIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodVoletBrandDarkIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#fff', d: 'm114.507 46.772-4.606-.86c-.099 1.087-.379 2.027-.838 2.581-.459.555-1.292.842-2.113.842a2.66 2.66 0 0 1-1.899-.724q-.766-.715-.765-2.152V39.4h8.633v-5.705h-8.633V28.51H98.02v17.847q0 3.81 2.218 6.11 2.22 2.298 6.609 2.303c2.498 0 4.64-.692 6.137-2.078a8 8 0 0 0 1.523-1.92 10.4 10.4 0 0 0 1.214-3.765zM53.803 36.255A11.5 11.5 0 0 0 49.46 31.9q-2.712-1.593-6.317-1.584-3.551 0-6.316 1.584a11.5 11.5 0 0 0-4.342 4.355q-1.577 2.772-1.58 6.286 0 3.514 1.574 6.29a11.5 11.5 0 0 0 4.343 4.345q2.763 1.592 6.315 1.592 3.609 0 6.318-1.584a11.5 11.5 0 0 0 4.348-4.352q1.579-2.772 1.579-6.286t-1.58-6.29m-5.385 9.826a6.24 6.24 0 0 1-2.165 2.424 6.16 6.16 0 0 1-6.218 0 6.24 6.24 0 0 1-2.165-2.424q-.791-1.582-.79-3.688.001-2.107.79-3.688a5.8 5.8 0 0 1 2.165-2.424 6.16 6.16 0 0 1 6.218 0 5.8 5.8 0 0 1 2.165 2.424q.79 1.578.79 3.688-.002 2.11-.79 3.688m40.528-.725q-.497 1.836-1.826 2.925t-3.651 1.088a7.7 7.7 0 0 1-2.96-.593 5.73 5.73 0 0 1-2.272-1.883q-.838-1.288-.937-3.168h15.94q.1-.692.143-1.385.097-.739.099-1.485 0-3.266-1.382-5.593a9.13 9.13 0 0 0-3.753-3.663q-2.413-1.284-5.674-1.284-3.503 0-6.119 1.633a11.55 11.55 0 0 0-4.095 4.355q-1.43 2.722-1.43 6.082 0 3.765 1.578 6.583a11.05 11.05 0 0 0 4.392 4.307q2.82 1.492 6.42 1.492 4.244 0 6.957-1.979 2.765-1.98 3.898-5.346zm-9.682-8.905a5.7 5.7 0 0 1 3.356-1.043 5.9 5.9 0 0 1 2.467.474c.675.248 1.26.694 1.678 1.281.444.57.687 1.27.691 1.993a.7.7 0 0 1-.05.237H77.383c.33-1.293.894-2.273 1.88-2.938zM56.867 54.27l7.371-29.04H70.9l-7.37 29.04zM10.662 30.809l6.365 17.465 6.704-17.465h6.662l-9.516 23.456h-7.651L4 30.81zm110.624 23.959a2.65 2.65 0 0 1-1.383-.368 2.74 2.74 0 0 1-1.33-2.348 2.74 2.74 0 0 1 1.33-2.348 2.8 2.8 0 0 1 2.772 0 2.7 2.7 0 0 1 .97.984 2.8 2.8 0 0 1 0 2.728 2.7 2.7 0 0 1-.964.984c-.422.25-.905.378-1.395.368m0-.64c.37.007.734-.09 1.053-.28a2.08 2.08 0 0 0 1.01-1.796 2.05 2.05 0 0 0-.265-1.043 2.1 2.1 0 0 0-.739-.747 2.11 2.11 0 0 0-2.105-.007 2.1 2.1 0 0 0-.733.747 2.087 2.087 0 0 0 .733 2.84c.316.19.679.287 1.046.283zm.021-.757a1.344 1.344 0 0 1-1.316-1.352c.001-.234.062-.464.178-.667a1.29 1.29 0 0 1 1.107-.62c.278-.009.553.07.784.225.226.17.376.42.42.7l-.546.162a.67.67 0 0 0-.217-.412.65.65 0 0 0-.433-.156.72.72 0 0 0-.486.197.8.8 0 0 0-.212.869.79.79 0 0 0 .728.517.67.67 0 0 0 .531-.199.9.9 0 0 0 .218-.482l.525.194c-.067.298-.23.565-.464.76-.234.18-.523.272-.817.26z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodVoletBrandDarkIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodVoletBrandIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#000', d: 'm114.507 46.772-4.606-.86c-.099 1.088-.379 2.027-.838 2.582s-1.292.841-2.113.841a2.66 2.66 0 0 1-1.899-.724q-.766-.715-.765-2.151V39.4h8.633v-5.706h-8.633V28.51H98.02v17.848q0 3.81 2.218 6.109 2.22 2.298 6.609 2.303c2.498 0 4.64-.692 6.137-2.078a8 8 0 0 0 1.523-1.92 10.4 10.4 0 0 0 1.214-3.764zM53.803 36.256A11.5 11.5 0 0 0 49.46 31.9q-2.712-1.593-6.317-1.584-3.551 0-6.316 1.584a11.5 11.5 0 0 0-4.342 4.355q-1.577 2.772-1.58 6.286 0 3.515 1.574 6.291a11.5 11.5 0 0 0 4.343 4.344q2.763 1.593 6.315 1.593 3.609 0 6.318-1.584a11.5 11.5 0 0 0 4.348-4.353q1.579-2.77 1.579-6.285 0-3.514-1.58-6.291m-5.385 9.825a6.24 6.24 0 0 1-2.165 2.424 6.16 6.16 0 0 1-6.218 0 6.24 6.24 0 0 1-2.165-2.424q-.791-1.58-.79-3.688.001-2.106.79-3.687a5.8 5.8 0 0 1 2.165-2.424 6.16 6.16 0 0 1 6.218 0 5.8 5.8 0 0 1 2.165 2.424q.79 1.578.79 3.687-.002 2.11-.79 3.688m40.528-.724q-.497 1.837-1.826 2.925-1.329 1.089-3.651 1.089a7.7 7.7 0 0 1-2.96-.594 5.73 5.73 0 0 1-2.272-1.882q-.838-1.29-.937-3.168h15.94q.1-.691.143-1.386.097-.739.099-1.484 0-3.267-1.382-5.593a9.13 9.13 0 0 0-3.753-3.664q-2.413-1.284-5.674-1.284-3.503 0-6.119 1.633a11.55 11.55 0 0 0-4.095 4.356q-1.43 2.722-1.43 6.081 0 3.764 1.578 6.584a11.05 11.05 0 0 0 4.392 4.306q2.82 1.493 6.42 1.493 4.244 0 6.957-1.98 2.765-1.98 3.898-5.345zm-9.682-8.905a5.7 5.7 0 0 1 3.356-1.042 5.9 5.9 0 0 1 2.467.473c.675.248 1.26.695 1.678 1.282.444.569.687 1.27.691 1.992a.7.7 0 0 1-.05.238H77.383c.33-1.293.894-2.274 1.88-2.938zM56.867 54.27l7.371-29.039H70.9l-7.37 29.04zM10.662 30.81l6.365 17.464 6.704-17.465h6.662l-9.516 23.457h-7.651L4 30.809zm110.624 23.959a2.65 2.65 0 0 1-1.383-.368 2.74 2.74 0 0 1-1.33-2.348 2.74 2.74 0 0 1 1.33-2.348 2.8 2.8 0 0 1 2.772 0 2.7 2.7 0 0 1 .97.983 2.8 2.8 0 0 1 0 2.728 2.7 2.7 0 0 1-.964.985c-.422.25-.905.377-1.395.367m0-.64c.37.006.734-.09 1.053-.28a2.08 2.08 0 0 0 1.01-1.797 2.05 2.05 0 0 0-.265-1.042 2.1 2.1 0 0 0-.739-.747 2.11 2.11 0 0 0-2.105-.008 2.1 2.1 0 0 0-.733.747 2.087 2.087 0 0 0 .733 2.84c.316.19.679.288 1.046.284zm.021-.758a1.344 1.344 0 0 1-1.316-1.352c.001-.234.062-.463.178-.666a1.29 1.29 0 0 1 1.107-.62c.278-.01.553.07.784.225.226.169.376.42.42.699l-.546.162a.67.67 0 0 0-.217-.411.65.65 0 0 0-.433-.157.72.72 0 0 0-.486.197.8.8 0 0 0-.212.87.79.79 0 0 0 .728.516.67.67 0 0 0 .531-.198.9.9 0 0 0 .218-.483l.525.194a1.38 1.38 0 0 1-.464.76c-.234.18-.523.273-.817.261z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodVoletBrandIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodVoletWhiteIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#fff', d: 'm114.507 46.772-4.606-.86c-.099 1.087-.379 2.027-.838 2.581-.459.555-1.292.842-2.113.842a2.66 2.66 0 0 1-1.899-.724q-.766-.715-.765-2.152V39.4h8.633v-5.705h-8.633V28.51H98.02v17.847q0 3.81 2.218 6.11 2.22 2.298 6.609 2.303c2.498 0 4.64-.692 6.137-2.078a8 8 0 0 0 1.523-1.92 10.4 10.4 0 0 0 1.214-3.765zM53.803 36.255A11.5 11.5 0 0 0 49.46 31.9q-2.712-1.593-6.317-1.584-3.551 0-6.316 1.584a11.5 11.5 0 0 0-4.342 4.355q-1.577 2.772-1.58 6.286 0 3.514 1.574 6.29a11.5 11.5 0 0 0 4.343 4.345q2.763 1.592 6.315 1.592 3.609 0 6.318-1.584a11.5 11.5 0 0 0 4.348-4.352q1.579-2.772 1.579-6.286t-1.58-6.29m-5.385 9.826a6.24 6.24 0 0 1-2.165 2.424 6.16 6.16 0 0 1-6.218 0 6.24 6.24 0 0 1-2.165-2.424q-.791-1.582-.79-3.688.001-2.107.79-3.688a5.8 5.8 0 0 1 2.165-2.424 6.16 6.16 0 0 1 6.218 0 5.8 5.8 0 0 1 2.165 2.424q.79 1.578.79 3.688-.002 2.11-.79 3.688m40.528-.725q-.497 1.836-1.826 2.925t-3.651 1.088a7.7 7.7 0 0 1-2.96-.593 5.73 5.73 0 0 1-2.272-1.883q-.838-1.288-.937-3.168h15.94q.1-.692.143-1.385.097-.739.099-1.485 0-3.266-1.382-5.593a9.13 9.13 0 0 0-3.753-3.663q-2.413-1.284-5.674-1.284-3.503 0-6.119 1.633a11.55 11.55 0 0 0-4.095 4.355q-1.43 2.722-1.43 6.082 0 3.765 1.578 6.583a11.05 11.05 0 0 0 4.392 4.307q2.82 1.492 6.42 1.492 4.244 0 6.957-1.979 2.765-1.98 3.898-5.346zm-9.682-8.905a5.7 5.7 0 0 1 3.356-1.043 5.9 5.9 0 0 1 2.467.474c.675.248 1.26.694 1.678 1.281.444.57.687 1.27.691 1.993a.7.7 0 0 1-.05.237H77.383c.33-1.293.894-2.273 1.88-2.938zM56.867 54.27l7.371-29.04H70.9l-7.37 29.04zM10.662 30.809l6.365 17.465 6.704-17.465h6.662l-9.516 23.456h-7.651L4 30.81zm110.624 23.959a2.65 2.65 0 0 1-1.383-.368 2.74 2.74 0 0 1-1.33-2.348 2.74 2.74 0 0 1 1.33-2.348 2.8 2.8 0 0 1 2.772 0 2.7 2.7 0 0 1 .97.984 2.8 2.8 0 0 1 0 2.728 2.7 2.7 0 0 1-.964.984c-.422.25-.905.378-1.395.368m0-.64c.37.007.734-.09 1.053-.28a2.08 2.08 0 0 0 1.01-1.796 2.05 2.05 0 0 0-.265-1.043 2.1 2.1 0 0 0-.739-.747 2.11 2.11 0 0 0-2.105-.007 2.1 2.1 0 0 0-.733.747 2.087 2.087 0 0 0 .733 2.84c.316.19.679.287 1.046.283zm.021-.757a1.344 1.344 0 0 1-1.316-1.352c.001-.234.062-.464.178-.667a1.29 1.29 0 0 1 1.107-.62c.278-.009.553.07.784.225.226.17.376.42.42.7l-.546.162a.67.67 0 0 0-.217-.412.65.65 0 0 0-.433-.156.72.72 0 0 0-.486.197.8.8 0 0 0-.212.869.79.79 0 0 0 .728.517.67.67 0 0 0 .531-.199.9.9 0 0 0 .218-.482l.525.194c-.067.298-.23.565-.464.76-.234.18-.523.272-.817.26z' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodVoletWhiteIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -715,3 +715,23 @@ export { default as PaymentMethodYapeBlackIcon } from './PaymentMethodYapeBlackI
|
|
|
715
715
|
export { default as PaymentMethodYapeBrandDarkIcon } from './PaymentMethodYapeBrandDarkIcon';
|
|
716
716
|
export { default as PaymentMethodYapeBrandIcon } from './PaymentMethodYapeBrandIcon';
|
|
717
717
|
export { default as PaymentMethodYapeWhiteIcon } from './PaymentMethodYapeWhiteIcon';
|
|
718
|
+
export { default as PaymentMethodBankTransferBlackIcon } from './PaymentMethodBankTransferBlackIcon';
|
|
719
|
+
export { default as PaymentMethodBankTransferBrandDarkIcon } from './PaymentMethodBankTransferBrandDarkIcon';
|
|
720
|
+
export { default as PaymentMethodBankTransferBrandIcon } from './PaymentMethodBankTransferBrandIcon';
|
|
721
|
+
export { default as PaymentMethodBankTransferWhiteIcon } from './PaymentMethodBankTransferWhiteIcon';
|
|
722
|
+
export { default as PaymentMethodDusupayBlackIcon } from './PaymentMethodDusupayBlackIcon';
|
|
723
|
+
export { default as PaymentMethodDusupayBrandDarkIcon } from './PaymentMethodDusupayBrandDarkIcon';
|
|
724
|
+
export { default as PaymentMethodDusupayBrandIcon } from './PaymentMethodDusupayBrandIcon';
|
|
725
|
+
export { default as PaymentMethodDusupayWhiteIcon } from './PaymentMethodDusupayWhiteIcon';
|
|
726
|
+
export { default as PaymentMethodJetonbankBlackIcon } from './PaymentMethodJetonbankBlackIcon';
|
|
727
|
+
export { default as PaymentMethodJetonbankBrandDarkIcon } from './PaymentMethodJetonbankBrandDarkIcon';
|
|
728
|
+
export { default as PaymentMethodJetonbankBrandIcon } from './PaymentMethodJetonbankBrandIcon';
|
|
729
|
+
export { default as PaymentMethodJetonbankWhiteIcon } from './PaymentMethodJetonbankWhiteIcon';
|
|
730
|
+
export { default as PaymentMethodMtnBlackIcon } from './PaymentMethodMtnBlackIcon';
|
|
731
|
+
export { default as PaymentMethodMtnBrandDarkIcon } from './PaymentMethodMtnBrandDarkIcon';
|
|
732
|
+
export { default as PaymentMethodMtnWhiteIcon } from './PaymentMethodMtnWhiteIcon';
|
|
733
|
+
export { default as PaymentMethodSpeiBrandDarkIcon } from './PaymentMethodSpeiBrandDarkIcon';
|
|
734
|
+
export { default as PaymentMethodVoletBlackIcon } from './PaymentMethodVoletBlackIcon';
|
|
735
|
+
export { default as PaymentMethodVoletBrandDarkIcon } from './PaymentMethodVoletBrandDarkIcon';
|
|
736
|
+
export { default as PaymentMethodVoletBrandIcon } from './PaymentMethodVoletBrandIcon';
|
|
737
|
+
export { default as PaymentMethodVoletWhiteIcon } from './PaymentMethodVoletWhiteIcon';
|
package/dist/react/Logo/index.js
CHANGED
|
@@ -715,3 +715,23 @@ export { default as PaymentMethodYapeBlackIcon } from './PaymentMethodYapeBlackI
|
|
|
715
715
|
export { default as PaymentMethodYapeBrandDarkIcon } from './PaymentMethodYapeBrandDarkIcon';
|
|
716
716
|
export { default as PaymentMethodYapeBrandIcon } from './PaymentMethodYapeBrandIcon';
|
|
717
717
|
export { default as PaymentMethodYapeWhiteIcon } from './PaymentMethodYapeWhiteIcon';
|
|
718
|
+
export { default as PaymentMethodBankTransferBlackIcon } from './PaymentMethodBankTransferBlackIcon';
|
|
719
|
+
export { default as PaymentMethodBankTransferBrandDarkIcon } from './PaymentMethodBankTransferBrandDarkIcon';
|
|
720
|
+
export { default as PaymentMethodBankTransferBrandIcon } from './PaymentMethodBankTransferBrandIcon';
|
|
721
|
+
export { default as PaymentMethodBankTransferWhiteIcon } from './PaymentMethodBankTransferWhiteIcon';
|
|
722
|
+
export { default as PaymentMethodDusupayBlackIcon } from './PaymentMethodDusupayBlackIcon';
|
|
723
|
+
export { default as PaymentMethodDusupayBrandDarkIcon } from './PaymentMethodDusupayBrandDarkIcon';
|
|
724
|
+
export { default as PaymentMethodDusupayBrandIcon } from './PaymentMethodDusupayBrandIcon';
|
|
725
|
+
export { default as PaymentMethodDusupayWhiteIcon } from './PaymentMethodDusupayWhiteIcon';
|
|
726
|
+
export { default as PaymentMethodJetonbankBlackIcon } from './PaymentMethodJetonbankBlackIcon';
|
|
727
|
+
export { default as PaymentMethodJetonbankBrandDarkIcon } from './PaymentMethodJetonbankBrandDarkIcon';
|
|
728
|
+
export { default as PaymentMethodJetonbankBrandIcon } from './PaymentMethodJetonbankBrandIcon';
|
|
729
|
+
export { default as PaymentMethodJetonbankWhiteIcon } from './PaymentMethodJetonbankWhiteIcon';
|
|
730
|
+
export { default as PaymentMethodMtnBlackIcon } from './PaymentMethodMtnBlackIcon';
|
|
731
|
+
export { default as PaymentMethodMtnBrandDarkIcon } from './PaymentMethodMtnBrandDarkIcon';
|
|
732
|
+
export { default as PaymentMethodMtnWhiteIcon } from './PaymentMethodMtnWhiteIcon';
|
|
733
|
+
export { default as PaymentMethodSpeiBrandDarkIcon } from './PaymentMethodSpeiBrandDarkIcon';
|
|
734
|
+
export { default as PaymentMethodVoletBlackIcon } from './PaymentMethodVoletBlackIcon';
|
|
735
|
+
export { default as PaymentMethodVoletBrandDarkIcon } from './PaymentMethodVoletBrandDarkIcon';
|
|
736
|
+
export { default as PaymentMethodVoletBrandIcon } from './PaymentMethodVoletBrandIcon';
|
|
737
|
+
export { default as PaymentMethodVoletWhiteIcon } from './PaymentMethodVoletWhiteIcon';
|
|
@@ -2,6 +2,6 @@ import * as React from 'react';
|
|
|
2
2
|
import { forwardRef } from 'react';
|
|
3
3
|
const PaymentMethodAirtelBlackIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
4
|
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
-
React.createElement("path", { fill: '#000', fillRule: 'evenodd', d: 'M13.
|
|
5
|
+
React.createElement("path", { fill: '#000', fillRule: 'evenodd', d: 'M13.801 54.628c.975 0 2.106-.234 3.394-.683 1.91-.663 3.432-1.58 4.914-2.477l.39-.254a37 37 0 0 0 4.642-3.354 20.44 20.44 0 0 0 6.729-9.284c.488-1.404 1.17-4.173.332-6.767a8.78 8.78 0 0 0-3.53-4.623c-.196-.156-2.341-1.813-6.417-1.813-3.706 0-7.782 1.365-12.092 4.095l-.137.098-.39.253a25 25 0 0 0-2.847 2.087c-1.834 1.697-3.901 4.525-3.784 6.943a3.24 3.24 0 0 0 1.326 2.477c.78.585 1.756.878 2.73.839 2.224 0 4.643-1.17 6.3-2.145l.312-.196.859-.546.292-.195c2.34-1.52 4.778-3.1 7.528-4.017a6.5 6.5 0 0 1 1.912-.351q.414.005.819.097c.78.156 1.463.663 1.814 1.365.643 1.249.487 3.218-.39 5.032a22 22 0 0 1-6.027 7.197 24 24 0 0 1-3.94 2.73l-.117.04c-.585.331-1.17.624-1.813.858l-.098.039-.507.195c-2.75.702-1.073-1.639-1.073-1.639a21 21 0 0 1 1.873-1.852 19 19 0 0 0 1.15-1.054l.078-.078c.488-.468 1.15-1.111 1.112-2.028-.059-1.21-1.326-1.95-2.535-1.99h-.078c-1.17 0-2.243.644-2.965 1.21a9 9 0 0 0-1.97 2.145c-.741 1.112-2.282 3.979-.78 6.26.605.918 1.619 1.386 2.984 1.386M91.19 28.727l-5.032.8v17.962c0 4.038 2.38 5.93 6.397 5.93.976 0 1.873-.176 1.873-.176v-2.984l-.722-.02c-2.106-.078-2.535-1.209-2.535-2.535V37.582h3.257v-3.55H91.19zm31.07 21.493c-2.048-.137-2.477-1.034-2.477-2.497V28.708l-4.915.819V47.41c0 4.233 2.341 6.046 6.241 6.046.859 0 1.892-.195 1.892-.195V50.24h-.741zm-49.187 3.062h4.992V38.4c.664-.624 2.048-1.17 3.355-1.229 1.229-.039 2.029.195 2.029.195l1.365-3.042c-.527-.274-1.814-.586-3.296-.586-2.146 0-5.461.625-8.445 3.726zM101.41 41.19h5.305c0-1.424-.312-3.764-2.496-3.764-1.951 0-2.731 1.93-2.809 3.783zm9.167 7.392 1.365 2.808s-1.56 1.112-3.686 1.755a12.3 12.3 0 0 1-3.472.507c-2.145 0-3.979-.585-5.305-1.677a10.28 10.28 0 0 1-3.315-7.996c.039-4.915 2.281-10.142 8.055-10.142 5.168 0 7.528 3.12 7.625 9.927v.468h-10.59c-.097 2.048.293 3.979 1.17 4.915.585.644 1.502 1.073 2.848 1.073a9.56 9.56 0 0 0 5.285-1.639zm-55.02-4.623h-1.989c-2.457 0-3.374 1.619-3.413 3.062-.039 1.756.858 3.238 2.828 3.238a4.9 4.9 0 0 0 2.555-.624v-5.676zm4.974 6.631a11.6 11.6 0 0 1-8.27 3.023c-4.251 0-7.294-3.12-7.294-6.709.078-3.783 2.984-6.202 7.665-6.202h2.926v-.975c0-1.697-.742-2.496-2.536-2.574-1.462-.059-3.081.39-4.622 1.072l-.741.351-1.307-2.886.585-.312a14.76 14.76 0 0 1 6.612-1.717c3.393 0 7.021 1.658 7.021 6.632zm3.686 2.672h4.895v-19.23l-4.895.78zm4.74-25.998a2.94 2.94 0 0 1 .858 2.165c0 1.717-1.366 3.062-3.12 3.062-1.756 0-3.121-1.365-3.121-3.081 0-1.677 1.423-3.062 3.16-3.062a3.1 3.1 0 0 1 2.223.916', clipRule: 'evenodd' })));
|
|
6
6
|
const ForwardRef = forwardRef(PaymentMethodAirtelBlackIcon);
|
|
7
7
|
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodAirtelBrandDarkIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#E40000', fillRule: 'evenodd', d: 'M13.801 54.628c.975 0 2.106-.234 3.394-.683 1.91-.663 3.432-1.58 4.914-2.477l.39-.254a37 37 0 0 0 4.642-3.354 20.44 20.44 0 0 0 6.729-9.284c.488-1.404 1.17-4.173.332-6.767a8.78 8.78 0 0 0-3.53-4.623c-.196-.156-2.341-1.813-6.417-1.813-3.706 0-7.782 1.365-12.092 4.095l-.137.098-.39.253a25 25 0 0 0-2.847 2.087c-1.834 1.697-3.901 4.525-3.784 6.943a3.24 3.24 0 0 0 1.326 2.477c.78.585 1.756.878 2.73.839 2.224 0 4.643-1.17 6.3-2.145l.312-.196.859-.546.292-.195c2.34-1.52 4.778-3.1 7.528-4.017a6.5 6.5 0 0 1 1.912-.351q.414.005.819.097c.78.156 1.463.663 1.814 1.365.643 1.249.487 3.218-.39 5.032a22 22 0 0 1-6.027 7.197 24 24 0 0 1-3.94 2.73l-.117.04c-.585.331-1.17.624-1.813.858l-.098.039-.507.195c-2.75.702-1.073-1.639-1.073-1.639a21 21 0 0 1 1.873-1.852 19 19 0 0 0 1.15-1.054l.078-.078c.488-.468 1.15-1.111 1.112-2.028-.059-1.21-1.326-1.95-2.535-1.99h-.078c-1.17 0-2.243.644-2.965 1.21a9 9 0 0 0-1.97 2.145c-.741 1.112-2.282 3.979-.78 6.26.605.918 1.619 1.386 2.984 1.386M91.19 28.727l-5.032.8v17.962c0 4.038 2.38 5.93 6.397 5.93.976 0 1.873-.176 1.873-.176v-2.984l-.722-.02c-2.106-.078-2.535-1.209-2.535-2.535V37.582h3.257v-3.55H91.19zm31.07 21.493c-2.048-.137-2.477-1.034-2.477-2.497V28.708l-4.915.819V47.41c0 4.233 2.341 6.046 6.241 6.046.859 0 1.892-.195 1.892-.195V50.24h-.741zm-49.187 3.062h4.992V38.4c.664-.624 2.048-1.17 3.355-1.229 1.229-.039 2.029.195 2.029.195l1.365-3.042c-.527-.274-1.814-.586-3.296-.586-2.146 0-5.461.625-8.445 3.726zM101.41 41.19h5.305c0-1.424-.312-3.764-2.496-3.764-1.951 0-2.731 1.93-2.809 3.783zm9.167 7.392 1.365 2.808s-1.56 1.112-3.686 1.755a12.3 12.3 0 0 1-3.472.507c-2.145 0-3.979-.585-5.305-1.677a10.28 10.28 0 0 1-3.315-7.996c.039-4.915 2.281-10.142 8.055-10.142 5.168 0 7.528 3.12 7.625 9.927v.468h-10.59c-.097 2.048.293 3.979 1.17 4.915.585.644 1.502 1.073 2.848 1.073a9.56 9.56 0 0 0 5.285-1.639zm-55.02-4.623h-1.989c-2.457 0-3.374 1.619-3.413 3.062-.039 1.756.858 3.238 2.828 3.238a4.9 4.9 0 0 0 2.555-.624v-5.676zm4.974 6.631a11.6 11.6 0 0 1-8.27 3.023c-4.251 0-7.294-3.12-7.294-6.709.078-3.783 2.984-6.202 7.665-6.202h2.926v-.975c0-1.697-.742-2.496-2.536-2.574-1.462-.059-3.081.39-4.622 1.072l-.741.351-1.307-2.886.585-.312a14.76 14.76 0 0 1 6.612-1.717c3.393 0 7.021 1.658 7.021 6.632zm3.686 2.672h4.895v-19.23l-4.895.78zm4.74-25.998a2.94 2.94 0 0 1 .858 2.165c0 1.717-1.366 3.062-3.12 3.062-1.756 0-3.121-1.365-3.121-3.081 0-1.677 1.423-3.062 3.16-3.062a3.1 3.1 0 0 1 2.223.916', clipRule: 'evenodd' })));
|
|
6
|
+
const ForwardRef = forwardRef(PaymentMethodAirtelBrandDarkIcon);
|
|
7
|
+
export default ForwardRef;
|
|
@@ -2,6 +2,6 @@ import * as React from 'react';
|
|
|
2
2
|
import { forwardRef } from 'react';
|
|
3
3
|
const PaymentMethodAirtelWhiteIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
4
|
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
-
React.createElement("path", { fill: '#fff', fillRule: 'evenodd', d: 'M13.
|
|
5
|
+
React.createElement("path", { fill: '#fff', fillRule: 'evenodd', d: 'M13.801 54.628c.975 0 2.106-.234 3.394-.683 1.91-.663 3.432-1.58 4.914-2.477l.39-.254a37 37 0 0 0 4.642-3.354 20.44 20.44 0 0 0 6.729-9.284c.488-1.404 1.17-4.173.332-6.767a8.78 8.78 0 0 0-3.53-4.623c-.196-.156-2.341-1.813-6.417-1.813-3.706 0-7.782 1.365-12.092 4.095l-.137.098-.39.253a25 25 0 0 0-2.847 2.087c-1.834 1.697-3.901 4.525-3.784 6.943a3.24 3.24 0 0 0 1.326 2.477c.78.585 1.756.878 2.73.839 2.224 0 4.643-1.17 6.3-2.145l.312-.196.859-.546.292-.195c2.34-1.52 4.778-3.1 7.528-4.017a6.5 6.5 0 0 1 1.912-.351q.414.005.819.097c.78.156 1.463.663 1.814 1.365.643 1.249.487 3.218-.39 5.032a22 22 0 0 1-6.027 7.197 24 24 0 0 1-3.94 2.73l-.117.04c-.585.331-1.17.624-1.813.858l-.098.039-.507.195c-2.75.702-1.073-1.639-1.073-1.639a21 21 0 0 1 1.873-1.852 19 19 0 0 0 1.15-1.054l.078-.078c.488-.468 1.15-1.111 1.112-2.028-.059-1.21-1.326-1.95-2.535-1.99h-.078c-1.17 0-2.243.644-2.965 1.21a9 9 0 0 0-1.97 2.145c-.741 1.112-2.282 3.979-.78 6.26.605.918 1.619 1.386 2.984 1.386M91.19 28.727l-5.032.8v17.962c0 4.038 2.38 5.93 6.397 5.93.976 0 1.873-.176 1.873-.176v-2.984l-.722-.02c-2.106-.078-2.535-1.209-2.535-2.535V37.582h3.257v-3.55H91.19zm31.07 21.493c-2.048-.137-2.477-1.034-2.477-2.497V28.708l-4.915.819V47.41c0 4.233 2.341 6.046 6.241 6.046.859 0 1.892-.195 1.892-.195V50.24h-.741zm-49.187 3.062h4.992V38.4c.664-.624 2.048-1.17 3.355-1.229 1.229-.039 2.029.195 2.029.195l1.365-3.042c-.527-.274-1.814-.586-3.296-.586-2.146 0-5.461.625-8.445 3.726zM101.41 41.19h5.305c0-1.424-.312-3.764-2.496-3.764-1.951 0-2.731 1.93-2.809 3.783zm9.167 7.392 1.365 2.808s-1.56 1.112-3.686 1.755a12.3 12.3 0 0 1-3.472.507c-2.145 0-3.979-.585-5.305-1.677a10.28 10.28 0 0 1-3.315-7.996c.039-4.915 2.281-10.142 8.055-10.142 5.168 0 7.528 3.12 7.625 9.927v.468h-10.59c-.097 2.048.293 3.979 1.17 4.915.585.644 1.502 1.073 2.848 1.073a9.56 9.56 0 0 0 5.285-1.639zm-55.02-4.623h-1.989c-2.457 0-3.374 1.619-3.413 3.062-.039 1.756.858 3.238 2.828 3.238a4.9 4.9 0 0 0 2.555-.624v-5.676zm4.974 6.631a11.6 11.6 0 0 1-8.27 3.023c-4.251 0-7.294-3.12-7.294-6.709.078-3.783 2.984-6.202 7.665-6.202h2.926v-.975c0-1.697-.742-2.496-2.536-2.574-1.462-.059-3.081.39-4.622 1.072l-.741.351-1.307-2.886.585-.312a14.76 14.76 0 0 1 6.612-1.717c3.393 0 7.021 1.658 7.021 6.632zm3.686 2.672h4.895v-19.23l-4.895.78zm4.74-25.998a2.94 2.94 0 0 1 .858 2.165c0 1.717-1.366 3.062-3.12 3.062-1.756 0-3.121-1.365-3.121-3.081 0-1.677 1.423-3.062 3.16-3.062a3.1 3.1 0 0 1 2.223.916', clipRule: 'evenodd' })));
|
|
6
6
|
const ForwardRef = forwardRef(PaymentMethodAirtelWhiteIcon);
|
|
7
7
|
export default ForwardRef;
|
|
@@ -3,7 +3,7 @@ import { forwardRef } from 'react';
|
|
|
3
3
|
const PaymentMethodOrangeBlackIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
4
|
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
5
|
React.createElement("g", { fill: '#000' },
|
|
6
|
-
React.createElement("path", { d: '
|
|
7
|
-
React.createElement("path", { fillRule: 'evenodd', d: 'M96
|
|
6
|
+
React.createElement("path", { d: 'M74.959 59.142c1.267 0 1.944 1.133 1.944 2.524 0 1.183-.149 2.991-1.927 3.005-1.72.011-1.798-1.807-1.798-2.908 0-2.007.939-2.621 1.781-2.621m-35.081.28c1.75 0 2.074 1.569 2.074 2.709s-.325 2.72-2.074 2.72c-1.75 0-2.075-1.591-2.075-2.72s.325-2.71 2.075-2.71m44.847-.362c1.117 0 1.794.7 1.794 1.891h-3.601c.088-1.215.75-1.891 1.807-1.891M57.05 64.146c-.717.632-1.434.938-2.172.938-.637 0-1.008-.492-1.052-1.046l-.005-.107c0-1.055 1.04-1.617 3.23-1.895z' }),
|
|
7
|
+
React.createElement("path", { fillRule: 'evenodd', d: 'M96 72H32V8h64zM74.43 57.482c-1.894.003-3.58 1.67-3.58 4.647 0 3.012 1.637 4.452 3.712 4.452 1.36 0 1.928-.632 2.3-1.296l.032.032v1.037c0 1.392-.59 1.975-1.806 1.975-1.311 0-1.578-.438-1.675-.876l-2.314.372c.325 1.531 1.948 2.22 3.698 2.22 4.246-.027 4.36-2.477 4.36-3.967v-8.434l-1.973.005-.185 1.019c-.182-.436-.855-1.186-2.568-1.186m-34.552-.036c-2.319 0-4.407 1.47-4.407 4.695 0 3.224 2.088 4.7 4.407 4.7 2.316 0 4.407-1.473 4.407-4.694s-2.089-4.7-4.407-4.7m44.847.028c-2.574 0-4.155 1.722-4.155 4.653s1.567 4.617 4.193 4.617c1.83 0 3.19-.664 3.947-1.924l-1.719-.953c-.548.772-1.133 1.129-2.02 1.13-1.38 0-2.08-.852-2.098-2.538h5.932c0-.145.017-.299.017-.452 0-2.897-1.524-4.533-4.097-4.533m-28.939.01q-2.55-.002-3.798 1.739l1.581.903a2.66 2.66 0 0 1 2.17-1.023c.907 0 1.4.375 1.4 1.023v.495c-3.778.427-5.612 1.483-5.612 3.477 0 1.48.983 2.588 2.645 2.588a5.24 5.24 0 0 0 2.934-.886l.215.784h2.077v-6.458c0-1.637-1.291-2.642-3.612-2.642m-5.21.005a3.45 3.45 0 0 0-2.455 1.23v-1.047h-2.228v8.907h2.388v-5.925c.348-.792 1.463-.95 2.484-.95h.113v-2.2a2 2 0 0 0-.303-.015m15.883-.015c-1.095 0-1.965.426-3.06 1.227l-.212-1.056-1.939.268v8.666h2.325v-6.39c.795-.666 1.493-.989 2.193-.989.844 0 1.128.49 1.128 1.581v5.793h2.341v-6.202c0-1.926-.943-2.898-2.776-2.898m20.954-3.177v.393h.922v2.55h.487v-2.55h.921v-.393zm2.934.009v2.934h.485v-2.458h.014l.964 2.458h.306l.965-2.458h.016v2.458h.485v-2.934h-.743l-.864 2.235-.88-2.235z', clipRule: 'evenodd' }))));
|
|
8
8
|
const ForwardRef = forwardRef(PaymentMethodOrangeBlackIcon);
|
|
9
9
|
export default ForwardRef;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
7
|
+
export default ForwardRef;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
const PaymentMethodOrangeBrandDarkIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
|
+
React.createElement("path", { fill: '#FF7900', d: 'M32 8h64v64H32z' }),
|
|
6
|
+
React.createElement("path", { fill: '#fff', d: 'M57.107 65.8c-.868.58-1.89.889-2.935.885-1.662 0-2.644-1.106-2.644-2.587 0-1.994 1.833-3.05 5.61-3.477v-.495c0-.648-.492-1.023-1.4-1.023a2.65 2.65 0 0 0-2.17 1.023l-1.58-.903q1.247-1.74 3.798-1.739c2.321 0 3.613 1.005 3.613 2.642v6.458H57.32zm-3.285-1.874c0 .598.377 1.158 1.056 1.158.739 0 1.455-.307 2.172-.939v-2.109c-2.19.278-3.228.84-3.228 1.895zm7.426-6.013 1.94-.268.211 1.056c1.096-.801 1.965-1.228 3.06-1.228 1.833 0 2.777.973 2.777 2.9v6.202h-2.342V60.78c0-1.09-.284-1.58-1.128-1.58-.7 0-1.398.322-2.193.988v6.39h-2.325zm23.515 8.83c-2.626 0-4.193-1.686-4.193-4.616 0-2.931 1.58-4.654 4.155-4.654 2.573 0 4.097 1.637 4.097 4.534 0 .153-.018.307-.018.452h-5.93c.017 1.686.717 2.537 2.097 2.537.887 0 1.472-.356 2.02-1.129l1.719.953c-.757 1.26-2.116 1.924-3.947 1.924m1.756-5.793c0-1.192-.677-1.892-1.794-1.892-1.057 0-1.719.678-1.807 1.892zm-46.642 5.89c-2.318 0-4.407-1.476-4.407-4.7s2.089-4.694 4.407-4.694c2.32 0 4.408 1.479 4.408 4.7 0 3.223-2.091 4.695-4.407 4.695m0-7.418c-1.75 0-2.074 1.58-2.074 2.71 0 1.128.325 2.72 2.075 2.72s2.074-1.58 2.074-2.72-.325-2.71-2.075-2.71m6.015-1.75h2.229v1.047a3.45 3.45 0 0 1 2.454-1.23 2 2 0 0 1 .303.016v2.199h-.113c-1.02 0-2.136.158-2.484.95v5.925h-2.389zm29.083 7c1.78-.014 1.928-1.823 1.928-3.006 0-1.39-.677-2.524-1.944-2.524-.842 0-1.781.614-1.781 2.621 0 1.102.077 2.92 1.797 2.908m4.182-7.027v8.433c0 1.49-.113 3.94-4.36 3.967-1.75 0-3.373-.689-3.698-2.22l2.314-.372c.097.438.363.876 1.675.876 1.217 0 1.806-.583 1.806-1.976v-1.036l-.031-.032c-.373.664-.94 1.296-2.3 1.296-2.076 0-3.713-1.44-3.713-4.452 0-2.978 1.687-4.645 3.581-4.647 1.777 0 2.436.806 2.588 1.233h-.028l.192-1.066zm10.587-2.956h-.922v2.552h-.487V54.69h-.921v-.392h2.33zm3.838 2.552h-.485v-2.46h-.016l-.964 2.46h-.308l-.964-2.46h-.013v2.46h-.486v-2.935h.75l.878 2.235.865-2.235h.743z' })));
|
|
7
|
+
const ForwardRef = forwardRef(PaymentMethodOrangeBrandDarkIcon);
|
|
8
|
+
export default ForwardRef;
|
|
@@ -3,7 +3,7 @@ import { forwardRef } from 'react';
|
|
|
3
3
|
const PaymentMethodOrangeWhiteIcon = ({ title, titleId, ...props }, ref) => (React.createElement("svg", { xmlns: 'http://www.w3.org/2000/svg', fill: 'none', viewBox: '0 0 128 80', role: 'img', ref: ref, "aria-labelledby": titleId, ...props },
|
|
4
4
|
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
5
5
|
React.createElement("g", { fill: '#fff' },
|
|
6
|
-
React.createElement("path", { d: '
|
|
7
|
-
React.createElement("path", { fillRule: 'evenodd', d: 'M96
|
|
6
|
+
React.createElement("path", { d: 'M74.959 59.142c1.267 0 1.944 1.133 1.944 2.524 0 1.183-.149 2.991-1.927 3.005-1.72.011-1.798-1.807-1.798-2.908 0-2.007.939-2.621 1.781-2.621m-35.081.28c1.75 0 2.074 1.569 2.074 2.709s-.325 2.72-2.074 2.72c-1.75 0-2.075-1.591-2.075-2.72s.325-2.71 2.075-2.71m44.847-.362c1.117 0 1.794.7 1.794 1.891h-3.601c.088-1.215.75-1.891 1.807-1.891M57.05 64.146c-.717.632-1.434.938-2.172.938-.637 0-1.008-.492-1.052-1.046l-.005-.107c0-1.055 1.04-1.617 3.23-1.895z' }),
|
|
7
|
+
React.createElement("path", { fillRule: 'evenodd', d: 'M96 72H32V8h64zM74.43 57.482c-1.894.003-3.58 1.67-3.58 4.647 0 3.012 1.637 4.452 3.712 4.452 1.36 0 1.928-.632 2.3-1.296l.032.032v1.037c0 1.392-.59 1.975-1.806 1.975-1.311 0-1.578-.438-1.675-.876l-2.314.372c.325 1.531 1.948 2.22 3.698 2.22 4.246-.027 4.36-2.477 4.36-3.967v-8.434l-1.973.005-.185 1.019c-.182-.436-.855-1.186-2.568-1.186m-34.552-.036c-2.319 0-4.407 1.47-4.407 4.695 0 3.224 2.088 4.7 4.407 4.7 2.316 0 4.407-1.473 4.407-4.694s-2.089-4.7-4.407-4.7m44.847.028c-2.574 0-4.155 1.722-4.155 4.653s1.567 4.617 4.193 4.617c1.83 0 3.19-.664 3.947-1.924l-1.719-.953c-.548.772-1.133 1.129-2.02 1.13-1.38 0-2.08-.852-2.098-2.538h5.932c0-.145.017-.299.017-.452 0-2.897-1.524-4.533-4.097-4.533m-28.939.01q-2.55-.002-3.798 1.739l1.581.903a2.66 2.66 0 0 1 2.17-1.023c.907 0 1.4.375 1.4 1.023v.495c-3.778.427-5.612 1.483-5.612 3.477 0 1.48.983 2.588 2.645 2.588a5.24 5.24 0 0 0 2.934-.886l.215.784h2.077v-6.458c0-1.637-1.291-2.642-3.612-2.642m-5.21.005a3.45 3.45 0 0 0-2.455 1.23v-1.047h-2.228v8.907h2.388v-5.925c.348-.792 1.463-.95 2.484-.95h.113v-2.2a2 2 0 0 0-.303-.015m15.883-.015c-1.095 0-1.965.426-3.06 1.227l-.212-1.056-1.939.268v8.666h2.325v-6.39c.795-.666 1.493-.989 2.193-.989.844 0 1.128.49 1.128 1.581v5.793h2.341v-6.202c0-1.926-.943-2.898-2.776-2.898m20.954-3.177v.393h.922v2.55h.487v-2.55h.921v-.393zm2.934.009v2.934h.485v-2.458h.014l.964 2.458h.306l.965-2.458h.016v2.458h.485v-2.934h-.743l-.864 2.235-.88-2.235z', clipRule: 'evenodd' }))));
|
|
8
8
|
const ForwardRef = forwardRef(PaymentMethodOrangeWhiteIcon);
|
|
9
9
|
export default ForwardRef;
|
|
@@ -9,10 +9,12 @@ export { default as PaymentMethodSepaBrandDarkIcon } from './PaymentMethodSepaBr
|
|
|
9
9
|
export { default as PaymentMethodPoliBrandDarkIcon } from './PaymentMethodPoliBrandDarkIcon';
|
|
10
10
|
export { default as PaymentMethod1voucherBrandIcon } from './PaymentMethod1voucherBrandIcon';
|
|
11
11
|
export { default as PaymentMethodAirtelBrandIcon } from './PaymentMethodAirtelBrandIcon';
|
|
12
|
+
export { default as PaymentMethodAirtelBrandDarkIcon } from './PaymentMethodAirtelBrandDarkIcon';
|
|
12
13
|
export { default as PaymentMethodDiscoverBrandIcon } from './PaymentMethodDiscoverBrandIcon';
|
|
13
14
|
export { default as PaymentMethodLocalBankDepositBrandIcon } from './PaymentMethodLocalBankDepositBrandIcon';
|
|
14
15
|
export { default as PaymentMethodLocalBankTransferBrandIcon } from './PaymentMethodLocalBankTransferBrandIcon';
|
|
15
16
|
export { default as PaymentMethodOrangeBrandIcon } from './PaymentMethodOrangeBrandIcon';
|
|
17
|
+
export { default as PaymentMethodOrangeBrandDarkIcon } from './PaymentMethodOrangeBrandDarkIcon';
|
|
16
18
|
export { default as PaymentMethodTigoBrandIcon } from './PaymentMethodTigoBrandIcon';
|
|
17
19
|
export { default as PaymentMethodVnpayBrandIcon } from './PaymentMethodVnpayBrandIcon';
|
|
18
20
|
export { default as PaymentMethodXrpBlackIcon } from './PaymentMethodXrpBlackIcon';
|
|
@@ -9,10 +9,12 @@ export { default as PaymentMethodSepaBrandDarkIcon } from './PaymentMethodSepaBr
|
|
|
9
9
|
export { default as PaymentMethodPoliBrandDarkIcon } from './PaymentMethodPoliBrandDarkIcon';
|
|
10
10
|
export { default as PaymentMethod1voucherBrandIcon } from './PaymentMethod1voucherBrandIcon';
|
|
11
11
|
export { default as PaymentMethodAirtelBrandIcon } from './PaymentMethodAirtelBrandIcon';
|
|
12
|
+
export { default as PaymentMethodAirtelBrandDarkIcon } from './PaymentMethodAirtelBrandDarkIcon';
|
|
12
13
|
export { default as PaymentMethodDiscoverBrandIcon } from './PaymentMethodDiscoverBrandIcon';
|
|
13
14
|
export { default as PaymentMethodLocalBankDepositBrandIcon } from './PaymentMethodLocalBankDepositBrandIcon';
|
|
14
15
|
export { default as PaymentMethodLocalBankTransferBrandIcon } from './PaymentMethodLocalBankTransferBrandIcon';
|
|
15
16
|
export { default as PaymentMethodOrangeBrandIcon } from './PaymentMethodOrangeBrandIcon';
|
|
17
|
+
export { default as PaymentMethodOrangeBrandDarkIcon } from './PaymentMethodOrangeBrandDarkIcon';
|
|
16
18
|
export { default as PaymentMethodTigoBrandIcon } from './PaymentMethodTigoBrandIcon';
|
|
17
19
|
export { default as PaymentMethodVnpayBrandIcon } from './PaymentMethodVnpayBrandIcon';
|
|
18
20
|
export { default as PaymentMethodXrpBlackIcon } from './PaymentMethodXrpBlackIcon';
|
|
@@ -337,6 +337,10 @@ export const allIconsNames = [
|
|
|
337
337
|
type: 'file',
|
|
338
338
|
name: 'CurrencyPaxIcon.tsx',
|
|
339
339
|
},
|
|
340
|
+
{
|
|
341
|
+
type: 'file',
|
|
342
|
+
name: 'CurrencyPaxgIcon.tsx',
|
|
343
|
+
},
|
|
340
344
|
{
|
|
341
345
|
type: 'file',
|
|
342
346
|
name: 'CurrencyPlaceholderIcon.tsx',
|
|
@@ -2389,6 +2393,10 @@ export const allIconsNames = [
|
|
|
2389
2393
|
type: 'file',
|
|
2390
2394
|
name: 'DerivLightPassportPlaceholderKyc.webp',
|
|
2391
2395
|
},
|
|
2396
|
+
{
|
|
2397
|
+
type: 'file',
|
|
2398
|
+
name: 'DerivLightPaxg.webp',
|
|
2399
|
+
},
|
|
2392
2400
|
{
|
|
2393
2401
|
type: 'file',
|
|
2394
2402
|
name: 'DerivLightPaymentAgent.webp',
|
|
@@ -3591,6 +3599,10 @@ export const allIconsNames = [
|
|
|
3591
3599
|
type: 'file',
|
|
3592
3600
|
name: 'DerivLightPassportPlaceholderKycIcon.tsx',
|
|
3593
3601
|
},
|
|
3602
|
+
{
|
|
3603
|
+
type: 'file',
|
|
3604
|
+
name: 'DerivLightPaxgIcon.tsx',
|
|
3605
|
+
},
|
|
3594
3606
|
{
|
|
3595
3607
|
type: 'file',
|
|
3596
3608
|
name: 'DerivLightPaymentAgentIcon.tsx',
|
|
@@ -25559,6 +25571,22 @@ export const allIconsNames = [
|
|
|
25559
25571
|
type: 'file',
|
|
25560
25572
|
name: 'PaymentMethodBankRakyatIndonesiaBriWhiteIcon.tsx',
|
|
25561
25573
|
},
|
|
25574
|
+
{
|
|
25575
|
+
type: 'file',
|
|
25576
|
+
name: 'PaymentMethodBankTransferBlackIcon.tsx',
|
|
25577
|
+
},
|
|
25578
|
+
{
|
|
25579
|
+
type: 'file',
|
|
25580
|
+
name: 'PaymentMethodBankTransferBrandDarkIcon.tsx',
|
|
25581
|
+
},
|
|
25582
|
+
{
|
|
25583
|
+
type: 'file',
|
|
25584
|
+
name: 'PaymentMethodBankTransferBrandIcon.tsx',
|
|
25585
|
+
},
|
|
25586
|
+
{
|
|
25587
|
+
type: 'file',
|
|
25588
|
+
name: 'PaymentMethodBankTransferWhiteIcon.tsx',
|
|
25589
|
+
},
|
|
25562
25590
|
{
|
|
25563
25591
|
type: 'file',
|
|
25564
25592
|
name: 'PaymentMethodBankonlinearBlackIcon.tsx',
|
|
@@ -25915,6 +25943,22 @@ export const allIconsNames = [
|
|
|
25915
25943
|
type: 'file',
|
|
25916
25944
|
name: 'PaymentMethodDragonpayWhiteIcon.tsx',
|
|
25917
25945
|
},
|
|
25946
|
+
{
|
|
25947
|
+
type: 'file',
|
|
25948
|
+
name: 'PaymentMethodDusupayBlackIcon.tsx',
|
|
25949
|
+
},
|
|
25950
|
+
{
|
|
25951
|
+
type: 'file',
|
|
25952
|
+
name: 'PaymentMethodDusupayBrandDarkIcon.tsx',
|
|
25953
|
+
},
|
|
25954
|
+
{
|
|
25955
|
+
type: 'file',
|
|
25956
|
+
name: 'PaymentMethodDusupayBrandIcon.tsx',
|
|
25957
|
+
},
|
|
25958
|
+
{
|
|
25959
|
+
type: 'file',
|
|
25960
|
+
name: 'PaymentMethodDusupayWhiteIcon.tsx',
|
|
25961
|
+
},
|
|
25918
25962
|
{
|
|
25919
25963
|
type: 'file',
|
|
25920
25964
|
name: 'PaymentMethodDragonPhoenixBlackIcon.tsx',
|
|
@@ -26215,6 +26259,22 @@ export const allIconsNames = [
|
|
|
26215
26259
|
type: 'file',
|
|
26216
26260
|
name: 'PaymentMethodJetonWhiteIcon.tsx',
|
|
26217
26261
|
},
|
|
26262
|
+
{
|
|
26263
|
+
type: 'file',
|
|
26264
|
+
name: 'PaymentMethodJetonbankBlackIcon.tsx',
|
|
26265
|
+
},
|
|
26266
|
+
{
|
|
26267
|
+
type: 'file',
|
|
26268
|
+
name: 'PaymentMethodJetonbankBrandDarkIcon.tsx',
|
|
26269
|
+
},
|
|
26270
|
+
{
|
|
26271
|
+
type: 'file',
|
|
26272
|
+
name: 'PaymentMethodJetonbankBrandIcon.tsx',
|
|
26273
|
+
},
|
|
26274
|
+
{
|
|
26275
|
+
type: 'file',
|
|
26276
|
+
name: 'PaymentMethodJetonbankWhiteIcon.tsx',
|
|
26277
|
+
},
|
|
26218
26278
|
{
|
|
26219
26279
|
type: 'file',
|
|
26220
26280
|
name: 'PaymentMethodLibertyReserveBlackIcon.tsx',
|
|
@@ -26379,10 +26439,22 @@ export const allIconsNames = [
|
|
|
26379
26439
|
type: 'file',
|
|
26380
26440
|
name: 'PaymentMethodMpesaBrandIcon.tsx',
|
|
26381
26441
|
},
|
|
26442
|
+
{
|
|
26443
|
+
type: 'file',
|
|
26444
|
+
name: 'PaymentMethodMtnBlackIcon.tsx',
|
|
26445
|
+
},
|
|
26446
|
+
{
|
|
26447
|
+
type: 'file',
|
|
26448
|
+
name: 'PaymentMethodMtnBrandDarkIcon.tsx',
|
|
26449
|
+
},
|
|
26382
26450
|
{
|
|
26383
26451
|
type: 'file',
|
|
26384
26452
|
name: 'PaymentMethodMtnBrandIcon.tsx',
|
|
26385
26453
|
},
|
|
26454
|
+
{
|
|
26455
|
+
type: 'file',
|
|
26456
|
+
name: 'PaymentMethodMtnWhiteIcon.tsx',
|
|
26457
|
+
},
|
|
26386
26458
|
{
|
|
26387
26459
|
type: 'file',
|
|
26388
26460
|
name: 'PaymentMethodMvolaBlackIcon.tsx',
|
|
@@ -26719,6 +26791,10 @@ export const allIconsNames = [
|
|
|
26719
26791
|
type: 'file',
|
|
26720
26792
|
name: 'PaymentMethodSpeiBlackIcon.tsx',
|
|
26721
26793
|
},
|
|
26794
|
+
{
|
|
26795
|
+
type: 'file',
|
|
26796
|
+
name: 'PaymentMethodSpeiBrandDarkIcon.tsx',
|
|
26797
|
+
},
|
|
26722
26798
|
{
|
|
26723
26799
|
type: 'file',
|
|
26724
26800
|
name: 'PaymentMethodSpeiBrandIcon.tsx',
|
|
@@ -26867,6 +26943,22 @@ export const allIconsNames = [
|
|
|
26867
26943
|
type: 'file',
|
|
26868
26944
|
name: 'PaymentMethodVodafoneWhiteIcon.tsx',
|
|
26869
26945
|
},
|
|
26946
|
+
{
|
|
26947
|
+
type: 'file',
|
|
26948
|
+
name: 'PaymentMethodVoletBlackIcon.tsx',
|
|
26949
|
+
},
|
|
26950
|
+
{
|
|
26951
|
+
type: 'file',
|
|
26952
|
+
name: 'PaymentMethodVoletBrandDarkIcon.tsx',
|
|
26953
|
+
},
|
|
26954
|
+
{
|
|
26955
|
+
type: 'file',
|
|
26956
|
+
name: 'PaymentMethodVoletBrandIcon.tsx',
|
|
26957
|
+
},
|
|
26958
|
+
{
|
|
26959
|
+
type: 'file',
|
|
26960
|
+
name: 'PaymentMethodVoletWhiteIcon.tsx',
|
|
26961
|
+
},
|
|
26870
26962
|
{
|
|
26871
26963
|
type: 'file',
|
|
26872
26964
|
name: 'PaymentMethodVoucherryBlackIcon.tsx',
|
|
@@ -28403,6 +28495,10 @@ export const allIconsNames = [
|
|
|
28403
28495
|
type: 'file',
|
|
28404
28496
|
name: 'PaymentMethodAirtelBlackIcon.tsx',
|
|
28405
28497
|
},
|
|
28498
|
+
{
|
|
28499
|
+
type: 'file',
|
|
28500
|
+
name: 'PaymentMethodAirtelBrandDarkIcon.tsx',
|
|
28501
|
+
},
|
|
28406
28502
|
{
|
|
28407
28503
|
type: 'file',
|
|
28408
28504
|
name: 'PaymentMethodAirtelBrandIcon.tsx',
|
|
@@ -28575,6 +28671,10 @@ export const allIconsNames = [
|
|
|
28575
28671
|
type: 'file',
|
|
28576
28672
|
name: 'PaymentMethodOrangeBlackIcon.tsx',
|
|
28577
28673
|
},
|
|
28674
|
+
{
|
|
28675
|
+
type: 'file',
|
|
28676
|
+
name: 'PaymentMethodOrangeBrandDarkIcon.tsx',
|
|
28677
|
+
},
|
|
28578
28678
|
{
|
|
28579
28679
|
type: 'file',
|
|
28580
28680
|
name: 'PaymentMethodOrangeBrandIcon.tsx',
|