geoview-core
    Preparing search index...

    Type Alias TypeModalProps

    Properties definition of the modal

    type TypeModalProps = {
        active?: boolean;
        close?: () => void;
        content: ReactNode | string;
        footer?: ModalFooter;
        header?: ModalHeader;
        height?: string | number;
        modalId?: string;
        open?: () => void;
        width?: string | number;
    }
    Index

    Properties

    active?: boolean
    close?: () => void
    content: ReactNode | string
    footer?: ModalFooter
    header?: ModalHeader
    height?: string | number
    modalId?: string
    open?: () => void
    width?: string | number