UNPKG

@blocklet/payment-react

Version:

Reusable react components for payment kit v2

11 lines (10 loc) 349 B
import type { SxProps } from '@mui/material'; type Props = { mode: string; stripe: boolean; sx?: SxProps; fieldValidation?: Record<string, any>; errorPosition?: 'right' | 'bottom'; }; export default function AddressForm({ mode, stripe, sx, fieldValidation, errorPosition }: Props): import("react").JSX.Element | null; export {};