import { Typography } from '@mui/material'; import type { TypographyProps } from '@mui/material'; type Props = { amount: string } & TypographyProps; export default function PaymentAmount({ amount, sx = {} }: Props) { return ( {amount} ); }