Alert

Frosted notifications with uppercase mono titles. Great for surfacing incidents, warnings, or system wide broadcasts inside the console.

Alert variants

Installation

pnpm dlx shadcn@latest add @omni/alert

Usage

import {
  Alert,
  AlertActions,
  AlertDescription,
  AlertTitle,
} from "@/components/ui/alert"
import { Button } from "@/components/ui/button"
<Alert variant="warning">
  <AlertTitle>QUOTA REACHED</AlertTitle>
  <AlertDescription>
    Workspace secrets are almost full. Reclaim space or request an increase.
  </AlertDescription>
  <AlertActions>
    <Button variant="muted" size="sm">
      Request increase
    </Button>
    <Button size="sm">Manage secrets</Button>
  </AlertActions>
</Alert>