sebikostudio-icons
Version:
A collection of icon components
15 lines (10 loc) • 1.15 kB
JavaScript
import React, { forwardRef } from 'react';
export const MagnifyingGlassExclamationIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "magnifying glass, glass, magnify, exclamation, problem, warning, important highlight"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M18.5 18.5L12.7722 12.7722" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M14.5 8C14.5 11.5899 11.5899 14.5 8 14.5C4.41015 14.5 1.5 11.5899 1.5 8C1.5 4.41015 4.41015 1.5 8 1.5C11.5899 1.5 14.5 4.41015 14.5 8Z" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M8.5 11C8.5 11.2761 8.27614 11.5 8 11.5C7.72386 11.5 7.5 11.2761 7.5 11C7.5 10.7239 7.72386 10.5 8 10.5C8.27614 10.5 8.5 10.7239 8.5 11Z" fill="currentColor" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M8 4.5V8" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default MagnifyingGlassExclamationIcon;