WFP logoDesign System

An opinionated toast component for React.

About

Sonner is built and maintained by emilkowalski.

Installation

pnpm dlx shadcn@latest add https://designsystem.wfp.org/r/sonner.json

Add the Toaster component

import { Toaster } from "@/components/ui/sonner"

export default function RootLayout({ children }) {
  return (
    <html lang="en">
      <head />
      <body>
        <main>{children}</main>
        <Toaster />
      </body>
    </html>
  )
}

Usage

import { toast } from "sonner";
toast("Event has been created.");

Examples