@blocklet/payment-react
Version:
Reusable react components for payment kit v2
11 lines (10 loc) • 349 B
TypeScript
import React from 'react';
import './index.css';
import './types';
import { typography } from './typography';
import { type PaymentThemeOptions } from '../types';
export declare function PaymentThemeProvider({ children, theme: customTheme, }: {
children: React.ReactNode;
theme?: PaymentThemeOptions;
}): JSX.Element;
export { typography };