yarcl
    Preparing search index...

    Interface ToasterProps

    Props for Toaster.

    interface ToasterProps {
        label?: string;
        limit?: number;
        placement?:
            | "top-left"
            | "top-center"
            | "top-right"
            | "bottom-left"
            | "bottom-center"
            | "bottom-right";
    }
    Index
    label?: string

    Accessible name of the notifications region.

    'Notifications'
    
    limit?: number

    Maximum toasts shown at once. When exceeded, the oldest are dismissed.

    4
    
    placement?:
        | "top-left"
        | "top-center"
        | "top-right"
        | "bottom-left"
        | "bottom-center"
        | "bottom-right"

    Screen corner or edge where toasts appear.

    'bottom-right'