sebikostudio-icons
Version:
A collection of icon components
13 lines (8 loc) • 786 B
JavaScript
import React, { forwardRef } from 'react';
export const MagnifyingGlassIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "magnifying glass, glass, magnify, zoom, search, look"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M17.5 17.5L12.7722 12.7722" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M14.5 8.5C14.5 11.8137 11.8137 14.5 8.5 14.5C5.18629 14.5 2.5 11.8137 2.5 8.5C2.5 5.18629 5.18629 2.5 8.5 2.5C11.8137 2.5 14.5 5.18629 14.5 8.5Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default MagnifyingGlassIcon;