7 lines
118 B
TypeScript
7 lines
118 B
TypeScript
export interface CategoryChipProps {
|
|
icon: string;
|
|
label: string;
|
|
isSelected: boolean;
|
|
onPress: () => void;
|
|
}
|