Command Menu

Search documentation, components, and switch theme.

Atoms

Alert

Displays a callout for important messages.

shadcn/ui
Docs

Installation#

npx shadcn@latest add @formance/alert

Install the following dependencies:

npm install class-variance-authority

Copy and paste the following code into your project.

Update the import paths to match your project setup.

Usage#

import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'
<Alert>
  <AlertTitle>Transaction processing paused</AlertTitle>
  <AlertDescription>
    Payments to this ledger have been temporarily suspended. Check your
    connector configuration for details.
  </AlertDescription>
</Alert>