UNPKG

@blocklet/payment-react

Version:

Reusable react components for payment kit v2

10 lines (9 loc) 355 B
import { type SxProps } from '@mui/material'; interface DynamicPricingUnavailableProps { error?: string; onRetry?: () => void | Promise<void>; showRetry?: boolean; sx?: SxProps; } export default function DynamicPricingUnavailable({ error, onRetry, showRetry, sx, }: DynamicPricingUnavailableProps): import("react").JSX.Element; export {};