import { Divider, Flex, Text } from '@mantine/core'; import { PropsWithChildren } from 'react' interface CardInfoProps extends PropsWithChildren { label: string; } export default function CardInfo({ children, label }: CardInfoProps) { return ( {label} {children} ) }