Skip to content

Alert

Terminal window
npx stylesheet-ui add alert
import { Alert } from "@/components/ui/alert";
<Alert title="Heads up" description="This is an informational message." />
<Alert variant="success" title="Saved" description="Your changes are live." />
<Alert
variant="destructive"
title="Could not delete"
description="Try again in a moment."
onClose={() => {}}
/>