UNPKG

@blocklet/payment-react

Version:

Reusable react components for payment kit v2

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