Skip to content
Harness Design System

Toast

The Toast component is used to display notifications to the user. The Toast.Root component can be used either controlled or uncontrolled. When used uncontrolled, the Toast.Root component automatically handles the open state of the toast. When used controlled, the Toast.Root component can be controlled by providing the open and onOpenChange props.

Usage

import { Toast } from '@harnessio/ui/components'
//...
return (
<Toast.Provider> {/* typically placed at the root of the app */}
<Toast.Root>
<Toast.Title>Toast title</Toast.Title>
<Toast.Description>Toast description</Toast.Description>
<Toast.Close />
</Toast.Root>
<Toast.Viewport />
</Toast.Provider>
)

Anatomy

All parts of the Toast component can be imported and composed as required.

<Toast.Provider>
<Toast.Root>
<Toast.Title />
<Toast.Description />
<Toast.Close />
<Toast.Action />
</Toast.Root>
<Toast.Viewport />
</Toast.Provider>

API Reference

Provider

The Provider component is used to provide the Toast context to the rest of the app. It is typically placed at the root of the app.

<Toast.Provider
label="Notification" // [OPTIONAL] label for screen readers
duration={5000} // [OPTIONAL] duration of the toast in milliseconds
swipeDirection="right" // [OPTIONAL] direction in which the toast can be swiped to dismiss
swipeThreshold={50} // [OPTIONAL] distance in pixels at which the toast can be swiped to dismiss
>
{/* Toast roots and viewport */}
</Toast.Provider>
PropRequiredDefaultType
labelfalseNotificationstring
durationfalse5000number
swipeDirectionfalseright'left' | 'right' | 'up' | 'down'
swipeThresholdfalse50number

Root

The Root component is used to wrap the content of the toast. The Root component can be used either controlled or uncontrolled. When used uncontrolled, the Root component automatically handles the open state of the toast. When used controlled, the Root component can be controlled by providing the open and onOpenChange props.

<Toast.Root
variant="default" // [OPTIONAL] variant of the toast, can be 'default', 'destructive', 'success'
open // [OPTIONAL] whether the toast is open or closed
onOpenChange={onChange} // [OPTIONAL] callback when the toast is opened or closed
defaultOpen // [OPTIONAL] whether the toast is open by default
forceMount // [OPTIONAL] whether the toast should be mounted even if it is not open
className="class" // [OPTIONAL] className for the root element
>
<Toast.Title>Toast title</Toast.Title>
<Toast.Description>Toast description</Toast.Description>
<Toast.Close />
</Toast.Root>
PropRequiredDefaultType
variantfalsedefault'default' | 'destructive' | 'success'
openfalseboolean
onOpenChangefalse(open: boolean) => void
defaultOpenfalseboolean
forceMountfalseboolean
classNamefalsestring

Title

The Title component is used to display the title of the toast.

<Toast.Title
className="class" // [OPTIONAL] className for the title element
>
Toast title
</Toast.Title>
PropRequiredDefaultType
classNamefalsestring

Description

The Description component is used to display the description of the toast.

<Toast.Description
className="class" // [OPTIONAL] className for the description element
>
Toast description
</Toast.Description>
PropRequiredDefaultType
classNamefalsestring

Close

The Close component is used to close the toast.

<Toast.Close
className="class" // [OPTIONAL] className for the close button element
asChild // [OPTIONAL] render the close button as the child
onClick={onClick} // [OPTIONAL] callback when the close button is clicked
>
<button>Close</button>
</Toast.Close>
PropRequiredDefaultType
classNamefalsestring
asChildfalseboolean
onClickfalse() => void

Action

The Action component is used to display a call-to-action button in the toast.

<Toast.Action
className="class" // [OPTIONAL] className for the action button element
asChild // [OPTIONAL] render the action button as the child
onClick={onClick} // [OPTIONAL] callback when the action button is clicked
>
<button>Approve</button>
</Toast.Action>
PropRequiredDefaultType
classNamefalsestring
asChildfalseboolean
onClickfalse() => void

Viewport

The Viewport component is used to display the toast in the viewport.

<Toast.Viewport
hotkey={['f8']} // [OPTIONAL] hotkey to focus the toast
label="Notifications ({hotkey})" // [OPTIONAL] label for screen readers
className="class" // [OPTIONAL] className for the viewport element
/>
PropRequiredDefaultType
hotkeyfalsestring[]
labelfalsestring
classNamefalsestring