17 lines
546 B
TypeScript
17 lines
546 B
TypeScript
import { FC } from 'react';
|
|
|
|
interface IconSearchProps {
|
|
className?: string;
|
|
}
|
|
|
|
const IconSearch: FC<IconSearchProps> = ({ className }) => {
|
|
return (
|
|
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className={className}>
|
|
<circle cx="11.5" cy="11.5" r="9.5" stroke="currentColor" strokeWidth="1.5" opacity="0.5" />
|
|
<path d="M18.5 18.5L22 22" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" />
|
|
</svg>
|
|
);
|
|
};
|
|
|
|
export default IconSearch;
|