UNPKG

@blocklet/payment-react

Version:

Reusable react components for payment kit v2

8 lines (7 loc) 247 B
import type { ChipOwnProps } from '@mui/material'; type Props = { color?: string; backgroundColor?: string; } & ChipOwnProps; export default function Livemode({ color, backgroundColor, sx }: Props): import("react").JSX.Element; export {};