UNPKG

@blocklet/payment-react

Version:

Reusable react components for payment kit v2

7 lines (6 loc) 212 B
import type { TypographyProps } from '@mui/material'; type Props = { amount: string; } & TypographyProps; export default function PaymentAmount({ amount, sx }: Props): import("react").JSX.Element; export {};