Interface IProps

    Props

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

    Properties

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

    Generated using TypeDoc and TypeDoc Airthium Plugin