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