Alert
Displays a callout for important information.
Default
The default alert with neutral styling.
Heads up!
You can add components to your app using the CLI.
Destructive
Alert with destructive/error styling.
Error
Your session has expired. Please log in again.
Usage
julia
using Suite
Alert(
AlertTitle("Heads up!"),
AlertDescription("You can add components using the CLI."),
)
Alert(variant="destructive",
AlertTitle("Error"),
AlertDescription("Something went wrong."),
)API Reference
Alert
| Prop | Type | Default | Description |
|---|---|---|---|
| variant | String | "default" | default | destructive |
| class | String | "" | Additional CSS classes to merge |
| children... | Any | - | Alert content (AlertTitle, AlertDescription) |
| kwargs... | Pair | - | Any HTML attribute |
AlertTitle
| Prop | Type | Default | Description |
|---|---|---|---|
| class | String | "" | Additional CSS classes |
| children... | Any | - | Title text |
| kwargs... | Pair | - | Any HTML attribute |
AlertDescription
| Prop | Type | Default | Description |
|---|---|---|---|
| class | String | "" | Additional CSS classes |
| children... | Any | - | Description text |
| kwargs... | Pair | - | Any HTML attribute |