UNPKG

sebikostudio-icons

Version:
15 lines (10 loc) 945 B
import React, { forwardRef } from 'react'; export const ZoomInIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => ( <svg ref={ref} className={className} aria-label={ariaLabel || "magnifying glass, glass, magnify, zoom in, plus"} 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"/> <path d="M6 8.5H11" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> <path d="M8.5 6L8.5 11" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/> </svg> )); export default ZoomInIcon;