2026-07-22 13:33:19 +05:30

8 lines
134 B
TypeScript

export interface StatCardProps {
label: string;
count: number;
color: string;
isSelected?: boolean;
onPress?: () => void;
}