Pixelact Toast
pixelact-ui/toastFreeComponent
A simple toast component.
Live preview
live · rendered by the registry
Rendered by Pixelact UI on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://pixelactui.com/r/toast.jsonSource
1import { toast as sonnerToast } from "sonner";2import "@/components/ui/pixelact-ui/styles/styles.css";34export function toast(toast: string) {5 return sonnerToast.custom((id) => <Toast id={id} title={toast} />);6}78interface ToastProps {9 id: string | number;10 title: string;11}1213function Toast(props: ToastProps) {14 const { title } = props;1516 return (17 <div className="flex items-center shadow-(--pixel-box-shadow) box-shadow-margin bg-background w-full md:max-w-[364px] p-4">18 <p className="text-sm text-foreground pixel-font">{title}</p>19 </div>20 );21}2223export { Toast };
What it pulls in
Other registry items
Files it writes
More from Pixelact UI
All 28 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Pixelact Accordionaccordion | Pixelact UI | Components | Free | no deps · 2 files | |
| Pixelact Alertalert | Pixelact UI | Components | Free | no deps · 2 files | |
| Pixelact Alert Dialogalert-dialog | Pixelact UI | Components | Free | no deps · 2 files | |
| Pixelact Avataravatar | Pixelact UI | Components | Free | no deps · 2 files | |
| Pixelact Badgebadge | Pixelact UI | Components | Free | no deps · 2 files | |
| Pixelact Breadcrumbbreadcrumb | Pixelact UI | Components | Free | no deps · 2 files | |
| Pixelact Buttonbutton | Pixelact UI | Components | Free | no deps · 3 files | |
| Pixelact Calendarcalendar | Pixelact UI | Components | Free | no deps · 2 files |
