Files
web-menu-react-version-/src/components/Icons/SearchIcon.tsx
2025-10-04 18:22:24 +03:00

29 lines
727 B
TypeScript

interface SearchIconType {
className?: string;
onClick?: () => void;
}
const SearchIcon = ({ className, onClick }: SearchIconType) => {
return (
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
className={className}
onClick={onClick}
>
<path
d="M14 14L11.6667 11.6667M13.3333 7.66667C13.3333 10.7963 10.7963 13.3333 7.66667 13.3333C4.53705 13.3333 2 10.7963 2 7.66667C2 4.53705 4.53705 2 7.66667 2C10.7963 2 13.3333 4.53705 13.3333 7.66667Z"
stroke="#434E5C"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default SearchIcon;