StatCard

Organism

Compact metric display card with value, label, and optional accent color.

Variants

Preview
1284 Total Users
947 Active
38 Transferred
12 Cancelled
Code
<%- include('modules/ui/StatCard', { label: 'Total Users', value: 1284 }) %>
<%- include('modules/ui/StatCard', { label: 'Active',      value: 947,  accent: 'text-success' }) %>
<%- include('modules/ui/StatCard', { label: 'Transferred', value: 38,   accent: 'text-info' }) %>
<%- include('modules/ui/StatCard', { label: 'Cancelled',   value: 12,   accent: 'text-error' }) %>

Default (no accent)

Preview
1842 Sessions
24% Bounce rate
Code
<%- include('modules/ui/StatCard', { label: 'Sessions',    value: 1842 }) %>
<%- include('modules/ui/StatCard', { label: 'Bounce rate', value: '24%' }) %>
Source modules/ui/StatCard.ejs