Axinom Mosaic Libraries
    Preparing search index...

    Interface MessageBarProps

    interface MessageBarProps {
        onClose?: () => void;
        onRetry?: () => void;
        title: ReactNode;
        type?: "error" | "info" | "warning";
    }
    Index

    Properties

    onClose?: () => void

    If set, renders a close icon that will emit this callback. default: (undefined)

    onRetry?: () => void

    If set, renders a retry icon that will emit this callback. default: (undefined)

    title: ReactNode

    Context to convey

    type?: "error" | "info" | "warning"

    Message type. default: ('error')