Anatomy
Eye icon
Also known as: Auge, Sehen · eye.svg
An eye with iris and pupil — vision and ophthalmology. It fits eye exams, vision symptoms and EENT material.
VisionOphthalmologyEye examEENT
Weight
PNG size
px
Exports use the selected weight and currentColor — they inherit your text color. Free for commercial & educational use, no attribution required.
Use the Eye icon in code
Paste it straight into your project. It uses currentColor, so it inherits your text color, and scales without blurring.
Inline SVG · HTML
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
stroke="currentColor" stroke-width="2" stroke-linejoin="miter" stroke-linecap="butt">
<path d="M6 24 C12 16 36 16 42 24 C36 32 12 32 6 24 Z"/><circle cx="24" cy="24" r="5"/><circle cx="24" cy="24" r="1.4" fill="currentColor" stroke="none"/>
</svg>React component · JSX
export function IconEye(props) {
return (
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
stroke="currentColor" strokeWidth={2} strokeLinejoin="miter" strokeLinecap="butt" {...props}>
<path d="M6 24 C12 16 36 16 42 24 C36 32 12 32 6 24 Z"/><circle cx="24" cy="24" r="5"/><circle cx="24" cy="24" r="1.4" fill="currentColor" stroke="none"/>
</svg>
);
}