import React from 'react' import {cn} from '@/lib/utils' const Card = React.forwardRef>( ({className, children, ...props}, ref) => (
{children}
), ) Card.displayName = 'Card' const CardHeader = React.forwardRef>( ({className, children, ...props}, ref) => (
{children}
), ) CardHeader.displayName = 'CardHeader' const CardHeaderLabel = React.forwardRef>( ({className, children, ...props}, ref) => (

{children}

) ) CardHeaderLabel.displayName = 'CardHeaderLabel' const CardBody = React.forwardRef>( ({className, children, ...props}, ref) => (
{children}
) ) CardBody.displayName = 'CardBody' const CardBodyDescription = React.forwardRef>( ({className, children, ...props}, ref) => (

{children}

) ) CardBodyDescription.displayName = 'CardBodyDescription' const CardFooter = React.forwardRef>( ({className, children, ...props}, ref) => (
{children}
) ) CardFooter.displayName = 'CardFooter' export { Card, CardHeader, CardHeaderLabel, CardBody, CardBodyDescription, CardFooter, }