---
title: "alert"
description: "Callout for short, important messages."
category: "Feedback"
---
# alert
Callout for short, important messages.
## Installation
```bash
php artisan ui:add alert
```
## Dependencies
- composer: `gehrisandro/tailwind-merge-laravel`
## Usage
```blade
You can add components to your app using the CLI.
Your card was declined. Try another payment method.
```
## Example
The demo rendered on the docs page.
```blade
You can add components to your app using the CLI.
Your session has expired. Please log in again.
```
## Source
Copy this file to the path shown above it.
`resources/views/components/ui/alert.blade.php`
```blade
@props([
'variant' => 'default',
'title' => null,
])
@php
$base =
"relative grid w-full grid-cols-[0_1fr] items-start gap-y-0.5 rounded-lg border px-4 py-3 text-sm has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] has-[>svg]:gap-x-3 [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current";
$variants = match ($variant) {
'destructive'
=> 'bg-card text-destructive [&>svg]:text-current',
default => 'bg-card text-card-foreground',
};
$classes = \TailwindMerge\Laravel\Facades\TailwindMerge::merge(
$base,
$variants,
$attributes->get('class'),
);
@endphp
except('class')->merge(['class' => $classes]) }}>
@isset($icon)
{{ $icon }}
@endisset
@if ($title)
{{ $title }}
@endif
{{ $slot }}
```
## Theme tokens
`--border`, `--background`, `--foreground`, `--destructive`, `--muted-foreground`, `--radius`
Variants: default, destructive. Optional `icon` and `title`.