function createStatCard
createStatCard(props: StatCardProps): HTMLDivElement

Create a stat card DOM element

Examples

const card = createStatCard({ value: 6, label: 'Total Checks', variant: 'default' });

const healthyCard = createStatCard({ value: 6, label: 'Healthy', variant: 'success', trend: { direction: 'up', value: '+12%', positive: true } });

Parameters

Return Type

HTMLDivElement