Props

interface IProps {
    children?: ReactNode;
    onClose: () => void;
    title: string;
    visible: boolean;
}

Properties

children?: ReactNode
onClose: () => void
title: string
visible: boolean