2026-07-01 09:55:55 +05:30

7 lines
118 B
TypeScript

export interface CategoryChipProps {
icon: string;
label: string;
isSelected: boolean;
onPress: () => void;
}