import { forwardRef } from 'react'; import { cn } from '~/lib/utils'; export interface CardProps extends React.HTMLAttributes {} const Card = forwardRef(({ className, ...props }, ref) => { return (
); }); Card.displayName = 'Card'; const CardHeader = forwardRef(({ className, ...props }, ref) => { return
; }); CardHeader.displayName = 'CardHeader'; const CardTitle = forwardRef>( ({ className, ...props }, ref) => { return

; }, ); CardTitle.displayName = 'CardTitle'; const CardDescription = forwardRef>( ({ className, ...props }, ref) => { return

; }, ); CardDescription.displayName = 'CardDescription'; const CardContent = forwardRef(({ className, ...props }, ref) => { return

; }); CardContent.displayName = 'CardContent'; export { Card, CardHeader, CardTitle, CardDescription, CardContent };