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 (

{title}

{description &&

{description}

}
{children}
) } interface ComponentVariantProps { title: string children: React.ReactNode } export function ComponentVariant({ title, children }: ComponentVariantProps) { return (

{title}

{children}
) } // Let's check if this component might be using a different accordion