master @ 7 LINES
[ HISTORY ] [ UP ]
┌─ ASTRO ────────────────────────────────────────────────────────────────────┐
│ --- │
│ import { buildGauge, type Props } from "./Gauge"; │
│ │
│ const { value, threshold, cells, low, high } = Astro.props as Props; │
│ --- │
│ <span class="gauge" role="meter" aria-valuenow={Math.round(value)} aria-valuemin=" │
│ 0" aria-valuemax="100">{buildGauge(value, { cells, threshold, low, high })}</span> │
└────────────────────────────────────────────────────────────────────────────────────┘
┌─ ASTRO ──────────────────────────────┐
│ --- │
│ import { buildGauge, type Props } from "./Ga │
│ uge"; │
│ │
│ const { value, threshold, cells, low, high } │
│ = Astro.props as Props; │
│ --- │
│ <span class="gauge" role="meter" aria-valuen │
│ ow={Math.round(value)} aria-valuemin="0" ari │
│ a-valuemax="100">{buildGauge(value, { cells, │
│ threshold, low, high })}</span> │
└──────────────────────────────────────────────┘
──────────────────────────────────────────────────────────────────────────────────────
OOKNET
────────────────────────────────────────────────
OOKNET