Alert

Informational messages with different severity levels.

Alert Variants

With Custom Icon

Dismissable Alert

With Rich Content

Usage

import { Alert } from "@/components/alert"

export default function MyComponent() {
  return (
    <div className="space-y-4">
      <Alert
        variant="success"
        title="Success"
        description="Your changes have been saved."
      />
      
      <Alert
        variant="error"
        title="Error"
        description="There was a problem with your submission."
        onClose={() => console.log("Alert closed")}
      />
    </div>
  )
}

Props

Name
Type
Default
Description
variant
string
"default"
Alert style variant: "default", "info", "success", "warning", or "error".
title
string
undefined
Title text for the alert.
description
ReactNode
undefined
Description content for the alert.
icon
ReactNode
undefined
Custom icon to display in the alert.
onClose
function
undefined
Function called when the close button is clicked.