mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
14 lines
673 B
Plaintext
14 lines
673 B
Plaintext
---
|
|
import ScreenshotLayout from '../layouts/ScreenshotLayout.astro'
|
|
import Alert from '@ui/Alert.astro'
|
|
---
|
|
|
|
<ScreenshotLayout title="Alert" columns={2}>
|
|
<div class="space-y">
|
|
<Alert type="success" title="Well done!" description="You successfully read this important alert message." />
|
|
<Alert type="warning" title="Warning!" description="Better check yourself, you're not looking too good." />
|
|
<Alert type="danger" title="Oh snap!" description="Change a few things up and try submitting again." showClose />
|
|
<Alert type="info" title="Heads up!" description="This alert needs your attention, but it's not super important." />
|
|
</div>
|
|
</ScreenshotLayout>
|