11 lines
220 B
TypeScript
11 lines
220 B
TypeScript
import { StyleProp, ViewStyle } from 'react-native';
|
|
|
|
export interface StatCardProps {
|
|
label: string;
|
|
count: number;
|
|
color: string;
|
|
isSelected?: boolean;
|
|
onPress?: () => void;
|
|
style?: StyleProp<ViewStyle>;
|
|
}
|