Files
web/app/types/modal.ts
2026-05-05 11:06:49 +07:00

8 lines
158 B
TypeScript

export interface ModalProps {
active: boolean;
onClose: () => void;
height?: string | number;
width?: string | number;
children: React.ReactNode;
}