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>
19 lines
497 B
Plaintext
19 lines
497 B
Plaintext
---
|
|
import Subheader from '@ui/Subheader.astro'
|
|
import Chart from '@ui/ChartRadial.astro'
|
|
import Trending from '@ui/Trending.astro'
|
|
---
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<Subheader>Active Users</Subheader>
|
|
<div class="d-flex align-items-baseline mb-2">
|
|
<div class="h1 mb-0 me-2">25,782</div>
|
|
<div class="me-auto">
|
|
<Trending value={-1} />
|
|
</div>
|
|
</div>
|
|
<Chart id="active-users-4" title="Active users" value={58} height={200} />
|
|
</div>
|
|
</div>
|