Weight Trend

Weight tracker with current and goal weights, a 30-day change pill, and a mini line chart underneath.

74.2 kgGoal 72.0 kg
- 1.8 kg in 30 days

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
import { Health16 } from "@/components/beste/piece/health16";

<Health16
  currentWeight="74.2 kg"
  goalWeight="Goal 72.0 kg"
  changeLabel="- 1.8 kg in 30 days"
  series={[
    76,
    75.8,
    75.4,
    75.6,
    75.2,
    74.8,
    74.4,
    74.5,
    74.2
  ]}
  tone="emerald"
/>