import type React from "react" import { cn } from "@/lib/utils" interface ComponentShowcaseProps { title: string description?: string children: React.ReactNode className?: string } export function ComponentShowcase({ title, description, children, className }: ComponentShowcaseProps) { return (
{description}
}