import { ReactNode } from 'react' import clsx from 'clsx' interface CardProps { children: ReactNode className?: string title?: string } export function Card({ children, className, title }: CardProps) { return (
{title && (

{title}

)} {children}
) }