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

8 lines
166 B
TypeScript

export interface SearchBarProps {
value: string;
onChangeText: (text: string) => void;
placeholder?: string;
onFocus?: () => void;
onSubmit?: () => void;
}