8 lines
134 B
TypeScript
8 lines
134 B
TypeScript
export interface StatCardProps {
|
|
label: string;
|
|
count: number;
|
|
color: string;
|
|
isSelected?: boolean;
|
|
onPress?: () => void;
|
|
}
|