Files
web/app/types/modal.ts
2026-03-02 09:45:33 +07:00

7 lines
157 B
TypeScript

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