Files
tenext-next/components/shared/icons/SearchIcon.tsx
2026-06-18 11:13:39 +05:30

27 lines
526 B
TypeScript

export function SearchIcon({ className = "" }: { className?: string }) {
return (
<svg
className={className}
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle
cx="7"
cy="7"
r="5.5"
stroke="currentColor"
strokeWidth="1.5"
/>
<path
d="M11 11L14.5 14.5"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
/>
</svg>
);
}