Glucose Log

Daily fasting-glucose readings with a latest value in the header and optional context tags per row.

Blood glucose · fasting
102mg/dL
Mon96
Tue104post-pasta
Wed92
Thu88
Fri102

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

Import & use
import { Health27 } from "@/components/beste/piece/health27";

<Health27
  metric="Blood glucose · fasting"
  unit="mg/dL"
  readings={[
    {
      "time": "Mon",
      "value": 96
    },
    {
      "time": "Tue",
      "value": 104,
      "tag": "post-pasta"
    },
    {
      "time": "Wed",
      "value": 92
    },
    {
      "time": "Thu",
      "value": 88
    },
    {
      "time": "Fri",
      "value": 102
    }
  ]}
  tone="rose"
/>