Safety
Infection icon
Also known as: Infektion, Keim · infection.svg
A microbe ringed by short rays — infection, germs and pathogens. Use it for infectious disease, hygiene and microbiology.
InfectionMicrobiologyHygienePathogens
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 Infection 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">
<circle cx="24" cy="24" r="10"/><path d="M24 14 V10.5 M24 34 V37.5 M34 24 H37.5 M14 24 H10.5 M31.1 16.9 L33.6 14.4 M16.9 31.1 L14.4 33.6 M31.1 31.1 L33.6 33.6 M16.9 16.9 L14.4 14.4"/><circle cx="21" cy="22" r="1.5" fill="currentColor" stroke="none"/><circle cx="27" cy="26" r="1.5" fill="currentColor" stroke="none"/><circle cx="24.5" cy="20.5" r="1.2" fill="currentColor" stroke="none"/>
</svg>React component · JSX
export function IconInfection(props) {
return (
<svg width="24" height="24" viewBox="0 0 48 48" fill="none"
stroke="currentColor" strokeWidth={2} strokeLinejoin="miter" strokeLinecap="butt" {...props}>
<circle cx="24" cy="24" r="10"/><path d="M24 14 V10.5 M24 34 V37.5 M34 24 H37.5 M14 24 H10.5 M31.1 16.9 L33.6 14.4 M16.9 31.1 L14.4 33.6 M31.1 31.1 L33.6 33.6 M16.9 16.9 L14.4 14.4"/><circle cx="21" cy="22" r="1.5" fill="currentColor" stroke="none"/><circle cx="27" cy="26" r="1.5" fill="currentColor" stroke="none"/><circle cx="24.5" cy="20.5" r="1.2" fill="currentColor" stroke="none"/>
</svg>
);
}