Skip to Content

sonner

ui

An opinionated toast component for React.

Use cases

  • Success/error toast notifications
  • Action confirmations
  • Background task completion alerts

Features

  • Built on Sonner library
  • Auto-dismiss with configurable duration
  • Action buttons in toasts
  • Theme-aware styling

Source Code

View the full component source code below.

"use client"

import { useTheme } from "next-themes"
import { Toaster as Sonner, type ToasterProps } from "sonner"
import { CircleCheckIcon, InfoIcon, TriangleAlertIcon, OctagonXIcon, Loader2Icon } from "lucide-react"

const Toaster = ({ ...props }: ToasterProps) => {
  const { theme = "system" } = useTheme()

  return (
    <Sonner
      theme={theme as ToasterProps["theme"]}
      className="toaster group"
      icons={{
        success: (
          <CircleCheckIcon className="size-4" />
        ),
        info: (
          <InfoIcon className="size-4" />
        ),
        warning: (
          <TriangleAlertIcon className="size-4" />
        ),
        error: (
          <OctagonXIcon className="size-4" />
        ),
        loading: (
          <Loader2Icon className="size-4 animate-spin" />
        ),
      }}
      style={
        {
          "--normal-bg": "var(--popover)",
          "--normal-text": "var(--popover-foreground)",
          "--normal-border": "var(--border)",
          "--border-radius": "var(--radius)",
        } as React.CSSProperties
      }
      toastOptions={{
        classNames: {
          toast: "cn-toast",
        },
      }}
      {...props}
    />
  )
}

export { Toaster }

Installation

npx shadcn@latest add https://registry.mukoko.com/api/v1/ui/sonner

Dependencies

sonnernext-themeslucide-react

API

Fetch this component's metadata and source code from the registry API.

GET/api/v1/ui/sonner

Source

components/ui/sonner.tsx