import { BlurView } from "expo-blur"; import React from "react"; import { Image, TextInput, View } from "react-native"; import { icons } from "../assets"; import { Palette } from "../styles"; import { FONT_FAMILY } from "../styles/Fonts"; import Style from "../styles/Style"; const SearchBar = ({ placeholder = "Que souhaites-tu écouter?", textInputProps = {}, }) => { return ( ); }; export default SearchBar;