Alert
Modifier | DaisyUI class |
---|---|
:info | alert-info |
:success | alert-success |
:warning | alert-warning |
:error | alert-error |
:neutral | alert-neutral |
:primary | alert-primary |
:secondary | alert-secondary |
:accent | alert-accent |
# Alert
1 Alert do 2exclamation_svg
3 4 span do 5"12 unread messages. Tap to see."
6end
7end
12 unread messages. Tap to see.
# Info color
1 Alert :info do 2exclamation_svg
3 4 span do 5"New software update available."
6end
7end
New software update available.
# Success color
1 Alert :success do 2exclamation_svg
3 4 span do 5"Your purchase has been confirmed!"
6end
7end
Your purchase has been confirmed!
# Warning color
1 Alert :warning do 2exclamation_svg
3 4 span do 5"Warning: Invalid email address!"
6end
7end
Warning: Invalid email address!
# Error color
1 Alert :error do 2exclamation_svg
3 4 span do 5"Error! Task failed successfully."
6end
7end
Error! Task failed successfully.
# Alert with buttons
1 Alert do 2exclamation_svg
3 4 span do 5"We use cookies for no reason."
6end
7 8 div do 9 Button :sm do 10"Deny"
11end
12 13 Button :sm, :primary do 14"Accept"
15end
16end
17end
We use cookies for no reason.
# Alert with title and description
1 Alert class: "shadow-lg" do 2exclamation_svg
3 4 div do 5 h3 class: "font-bold" do 6"New message!"
7end
8 9 div class: "text-xs" do 10"You have 1 unread message"
11end
12end
13 14 Button :sm do 15"See"
16end
17end
New message!
You have 1 unread message