8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
export interface SearchBarProps {
|
|
value: string;
|
|
onChangeText: (text: string) => void;
|
|
placeholder?: string;
|
|
onFocus?: () => void;
|
|
onSubmit?: () => void;
|
|
}
|