2026-07-16 11:56:16 +05:30

6 lines
116 B
TypeScript

export interface DrawerItemProps {
label: string;
iconName: string;
focused: boolean;
onPress: () => void;
}