turkmentv_front/components/table/Search.tsx

27 lines
1.1 KiB
XML

import Image from 'next/image';
export const Search = () => {
return (
<div className="flex items-center bg-[#F0F0FA] rounded-[25px]">
<input
type="text"
placeholder="Поиск по номеру телефона"
className=" rounded-[25px_0_0_25px] outline-none px-4 bg-transparent py-[12px]"
/>
<div className="bg-[#7A7ACC] rounded-[0_25px_25px_0] px-[16px] py-[12px]">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M9.5 3C11.2239 3 12.8772 3.68482 14.0962 4.90381C15.3152 6.12279 16 7.77609 16 9.5C16 11.11 15.41 12.59 14.44 13.73L14.71 14H15.5L20.5 19L19 20.5L14 15.5V14.71L13.73 14.44C12.5505 15.4468 11.0507 15.9999 9.5 16C7.77609 16 6.12279 15.3152 4.90381 14.0962C3.68482 12.8772 3 11.2239 3 9.5C3 7.77609 3.68482 6.12279 4.90381 4.90381C6.12279 3.68482 7.77609 3 9.5 3ZM9.5 5C7 5 5 7 5 9.5C5 12 7 14 9.5 14C12 14 14 12 14 9.5C14 7 12 5 9.5 5Z"
fill="white"
/>
</svg>
</div>
</div>
);
};