sebikostudio-icons
Version:
A collection of icon components
14 lines (9 loc) • 936 B
JavaScript
import React, { forwardRef } from 'react';
export const EyedropperIcon = forwardRef(({ className, style, ariaLabel, ...props }, ref) => (
<svg ref={ref} className={className} aria-label={ariaLabel || "eyedropper, sample, color picker, picker"} style={style} width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M17 6.49976C17.9763 5.52345 17.9763 3.97609 17 2.99978C16.0237 2.02347 14.4763 2.02353 13.5 2.99984L11.5 4.99988L15 8.49988L17 6.49976Z" fill="currentColor" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M16 7.5L7 16.5L3.267 17.3296C2.90975 17.4089 2.59106 17.0902 2.67045 16.733L3.5 13L12.5 4" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
<path d="M15.5 9.5L10.5 4.5" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round"/>
</svg>
));
export default EyedropperIcon;