All componentssmmdlg
Stat
Key figures with label, value, and help text in three value sizes.
Installs per day
10,482
+12% this month
Sizes
Installs per day
10,482
+12% this month
Installs per day
10,482
+12% this month
Installs per day
10,482
+12% this month
Install
zsh — stat
1bunx stylexblocks add statUsage — Base UI
stat.tsx
123456789101112131415import { Stat } from "#components/ui/base-ui/stat.tsx";
export function Example() { return ( // size resolves once on Root; parts inherit it via context and Root // exposes a data-size attribute <Stat.Root size="md"> <Stat.Label>Installs per day</Stat.Label> <Stat.ValueText> 10,482 <Stat.ValueUnit>pkg</Stat.ValueUnit> </Stat.ValueText> <Stat.HelpText>+12% this month</Stat.HelpText> </Stat.Root> );}