import { ReactNode } from "react"; export interface CardProps { className?: string; children?: ReactNode; title?: ReactNode; } export default function Card(props: CardProps) { const { className, children, title } = props; return ( <> {title && (