import * as React from 'react'; import { cn } from '#utils'; const CardRoot = React.forwardRef>(function CardRoot( { className, ...props }, ref ) { return (
); }); export const Card = Object.assign(CardRoot, { Content: ({ className, ...props }: React.HTMLAttributes) => (
), Description: ({ className, ...props }: React.HTMLAttributes) => (

), Footer: ({ className, ...props }: React.HTMLAttributes) => { return

; }, Header: ({ className, ...props }: React.HTMLAttributes) => (
), Title: ({ children, className, ...props }: React.HTMLAttributes) => (

{children}

) });