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>
24 lines
680 B
Plaintext
24 lines
680 B
Plaintext
---
|
|
import Subheader from '@ui/Subheader.astro'
|
|
import DropdownDays from '@ui/DropdownDays.astro'
|
|
import Trending from '@ui/Trending.astro'
|
|
import Progress from '@ui/Progress.astro'
|
|
---
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="d-flex align-items-center">
|
|
<Subheader>Sales</Subheader>
|
|
<div class="ms-auto lh-1">
|
|
<DropdownDays id="sales" label="Select time range for sales data" />
|
|
</div>
|
|
</div>
|
|
<div class="h1 mb-3">75%</div>
|
|
<div class="d-flex mb-2">
|
|
<div>Conversion rate</div>
|
|
<div class="ms-auto"><Trending value={7} /></div>
|
|
</div>
|
|
<Progress value={75} color="primary" size="sm" />
|
|
</div>
|
|
</div>
|