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