seti-ramesesv1
Version:
Reusable components and context for Next.js apps
11 lines (10 loc) • 337 B
TypeScript
export type ModalProps = {
open: boolean;
onClose: () => void;
children: React.ReactNode;
title?: string;
className?: string;
width?: string;
};
export declare const Modal: ({ open, onClose, title, children, className, width }: ModalProps) => import("react/jsx-runtime").JSX.Element | null;
export default Modal;