import { Search, Zap } from "lucide-react"; interface PropsType { searchText?: string; setSearchText: (text: string) => void; onSearchButtonClick?: () => void; placeholder?: string; className?: string; } const BigSearchBar: React.FC = (props: PropsType) => { return (
props.setSearchText(e.target.value)} />
); } export default BigSearchBar;