28 lines
610 B
JavaScript
28 lines
610 B
JavaScript
import SearchHeaderP from "@/components/icons/SearchHeaderP";
|
|
import { InputAdornment, TextField } from "@mui/material";
|
|
|
|
function Search() {
|
|
return (
|
|
<TextField
|
|
fullWidth
|
|
placeholder="جستجو"
|
|
className="!hidden md:!flex"
|
|
InputProps={{
|
|
startAdornment: (
|
|
<InputAdornment position="start">
|
|
<SearchHeaderP />
|
|
</InputAdornment>
|
|
),
|
|
}}
|
|
sx={{
|
|
"& .MuiOutlinedInput-input": {
|
|
paddingTop: "9px !important",
|
|
paddingBottom: "9px !important",
|
|
},
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export default Search;
|