Skip to Content

Toast

The toast is a feedback component notify the user after an action.


Import

Import
import { Toast } from '@backyard-ui/core';

Usage

Usage

Toaster

Toaster

This component will render all toasts.

<Toaster position="top-center" gutter={8} />

Appearances

Appearances

Use the appearance prop to change the visual semantic.

Variants

Variants

By default variant prop is neutral but you can use solid or subtle to get a different style.

Close Button

Close Button

Use the isClosable prop to show the close button.

Custom icon

Custom icon

To use a custom icon, pass the icon you choose to AlertIcon.

Custom JSX

Custom JSX

You can use toast.custom to create a custom toast.

Promise

Promise

Use toast.promise to mapping a promise to a toast. It will update automatically when the promise resolves or fails.

API Reference

API Reference

Toast

Toast
  • title
    Description The Toast title
    Type
    string
  • description required
    Description The Toast title
    Type
    string
  • isClosable
    Description If `true`, shows a close button
    Type
    boolean
  • role
    Description The role of the alert
    Type
    "alert" | "status"
    Default
    alert
  • appearance
    Description The alert appearance.
    Type
    "success" | "critical" | "info" | "warning"
    Default
    success
  • variant
    Description The variant is used to change the visual communication.
    Type
    "neutral" | "solid" | "subtle"
    Default
    solid
  • isLoading
    Description Show loading indicator
    Type
    boolean

Toaster

Toaster