UNPKG

@blocklet/payment-react

Version:

Reusable react components for payment kit v2

8 lines (7 loc) 314 B
import type { TLineItemExpanded, TPaymentCurrency } from '@blocklet/payment-types'; interface QuoteLockBannerProps { items: TLineItemExpanded[]; currency: TPaymentCurrency; } export default function QuoteLockBanner({ items, currency }: QuoteLockBannerProps): import("react").JSX.Element | null; export {};