mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
18 lines
546 B
Plaintext
18 lines
546 B
Plaintext
---
|
|
import Button from '@ui/Button.astro'
|
|
import ButtonList from '@ui/ButtonList.astro'
|
|
import CardTitle from '@ui/CardTitle.astro'
|
|
---
|
|
|
|
<div class="card card-gradient card-gradient-danger">
|
|
<div class="card-body p-5 text-center">
|
|
<CardTitle>Are you sure to delete this card?</CardTitle>
|
|
<p class="text-secondary">If you delete this card, you will not be able to recover it.</p>
|
|
|
|
<ButtonList center class="mt-5">
|
|
<Button text="Yes, delete it" color="danger" />
|
|
<Button text="Cancel" />
|
|
</ButtonList>
|
|
</div>
|
|
</div>
|