import * as React from 'react' import { theme } from '@latitude-data/client' type Props = React.HTMLAttributes & theme.ui.card.CardProps const CardContent = React.forwardRef( ({ className, type, ...props }, ref) => (
), ) CardContent.displayName = 'CardContent' export default CardContent