"use client"; import { ReactNode } from "react"; import { Dialog, DialogContent, DialogHeader, DialogTitle } from "../../../../shadcnui"; type BillingDetailModalProps = { open: boolean; onOpenChange: (open: boolean) => void; title: string; children: ReactNode; className?: string; }; export function BillingDetailModal({ open, onOpenChange, title, children, className }: BillingDetailModalProps) { return ( {title} {children} ); }