add: search box

This commit is contained in:
Mahyar Khanbolooki
2025-07-07 15:13:24 +03:30
parent 5d29e42176
commit aca8509ad1
5 changed files with 79 additions and 15 deletions
+22
View File
@@ -0,0 +1,22 @@
import React from 'react';
import SearchIcon from '../icons/SearchIcon';
type Props = {
value: string;
onChange: (e: React.ChangeEvent<HTMLInputElement>) => void;
};
export default function SearchBox({ value, onChange }: Props) {
return (
<div className="bg-white inline-flex rounded-xl px-4 h-12 w-full items-center content-center">
<SearchIcon stroke="#8C90A3" />
<input
onChange={onChange}
value={value}
placeholder="جستجو"
className="text-[#8C90A3] block outline-none border-none focus:ring-0 focus:outline-none text-sm px-[7px] h-full items-center w-full"
type="text"
/>
</div>
);
}