# Sonner

An opinionated toast notification component.

## Installation

```bash
npx shadcn@latest add https://landorui.landorestate.com/r/sonner.json
```

[Registry JSON](https://landorui.landorestate.com/r/sonner.json)

## Preview

```tsx
import { toast } from "sonner";

import { Button } from "@/components/ui/button";

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

export function Preview() {
  return (
    <div>
      <Button variant="outline" onClick={() => toast("Event has been created")}>
        Show toast
      </Button>
      <Toaster />
    </div>
  );
}
```


## Source

### ui/sonner.tsx

```tsx
"use client";

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

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 };
```



## Usage

An opinionated toast notification component.

```tsx
import { Toaster } from "@/components/ui/sonner";
```

