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