mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
26 lines
729 B
Plaintext
26 lines
729 B
Plaintext
---
|
|
import Subheader from '@ui/Subheader.astro'
|
|
import Chart from '@ui/Chart.astro'
|
|
import DropdownDays from '@ui/DropdownDays.astro'
|
|
import Trending from '@ui/Trending.astro'
|
|
---
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="d-flex align-items-center">
|
|
<Subheader>Active subscriptions</Subheader>
|
|
<div class="ms-auto lh-1">
|
|
<DropdownDays id="active-users" label="Select time range for active users" />
|
|
</div>
|
|
</div>
|
|
<div class="d-flex align-items-baseline">
|
|
<div class="h1 mb-3 me-2">2,986</div>
|
|
<div class="me-auto">
|
|
<Trending value={4} />
|
|
</div>
|
|
</div>
|
|
|
|
<Chart chartId="active-users" size="sm" label="Active subscriptions" />
|
|
</div>
|
|
</div>
|