Alert

@velon-finance/ui · status: stable · molecule

Inline banner with an icon, title and description. Use for feedback that’s part of the page flow. for transient feedback that auto-dismisses, use Sonner / Toast (in #11).

Variants

Code

import { Alert, AlertTitle, AlertDescription } from '@velon-finance/ui'
import { AlertCircle } from 'lucide-react'
 
<Alert variant="warning">
  <AlertCircle className="h-4 w-4" />
  <AlertTitle>KYC pendente</AlertTitle>
  <AlertDescription>...</AlertDescription>
</Alert>