6 lines
116 B
TypeScript
6 lines
116 B
TypeScript
export interface DrawerItemProps {
|
|
label: string;
|
|
iconName: string;
|
|
focused: boolean;
|
|
onPress: () => void;
|
|
} |