UNPKG

@blocklet/payment-react

Version:

Reusable react components for payment kit v2

12 lines (11 loc) 383 B
import type { LiteralUnion } from 'type-fest'; type Props = { name: string; description?: string; logo?: string; size?: number; extra?: React.ReactNode; variant?: LiteralUnion<'square' | 'rounded' | 'circular', string>; }; export default function ProductCard({ size, variant, name, logo, description, extra, }: Props): import("react").JSX.Element; export {};