import { Divider, Paper, Typography } from '@mui/material' import { PropsWithChildren } from 'react' interface CardInfoProps extends PropsWithChildren { label: string; } export default function CardInfo({ children, label }: CardInfoProps) { return ( {label} {children} ) }