import type { ReactNode } from 'react' interface ModalProps { ariaLabelledBy: string children: ReactNode } export default function Modal({ ariaLabelledBy, children }: ModalProps) { return (
{children}
) } interface ModalActionsProps { cancelLabel: string confirmLabel: string onCancel: () => void onConfirm: () => void confirmClassName?: string disabled?: boolean } export function ModalActions({ cancelLabel, confirmLabel, onCancel, onConfirm, confirmClassName = 'bg-white text-[#000000] hover:bg-gray-200', disabled = false, }: ModalActionsProps) { return (
) }