biohazard icon
biohazard-thin from Phosphor by Phosphor Icons · Thin · MIT Free for personal and commercial use.
- Name
- biohazard-thin
- Set
- Phosphor
- Style
- Thin
- Viewbox
- 256×256
- License
- MIT
5 other variants in Phosphor
The same icon in other sets
biohazardEmoji One (Colored)biohazardFont Awesome 6 SolidbiohazardFont Awesome SolidbiohazardFluent EmojibiohazardFluent Emoji FlatbiohazardFluent Emoji High ContrastbiohazardHuge IconsbiohazardLine AwesomebiohazardLucidebiohazardMaterial Design IconsbiohazardNoto EmojibiohazardOpenMojibiohazardTabler IconsbiohazardTwitter Emoji
Use the biohazard icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><path fill="currentColor" d="M183 108.08a60 60 0 0 0-4.94-9.08a56 56 0 0 0-24.21-74.73a4 4 0 1 0-3.7 7.09a48 48 0 0 1 22.37 60.49a59.91 59.91 0 0 0-89.05 0a48 48 0 0 1 22.38-60.5a4 4 0 0 0-3.7-7.1A56 56 0 0 0 77.93 99a61 61 0 0 0-4.93 9.08A56.07 56.07 0 0 0 20 164a4 4 0 0 0 8 0a48.06 48.06 0 0 1 42.08-47.62a60 60 0 0 0 45.75 74.38a48 48 0 0 1-65.67 13.7a4 4 0 1 0-4.32 6.73a56 56 0 0 0 78.69-19.3c1.15.07 2.3.11 3.47.11s2.32 0 3.47-.11a56 56 0 0 0 78.69 19.3a4 4 0 1 0-4.32-6.73a48 48 0 0 1-65.67-13.7a60 60 0 0 0 45.75-74.38A48.06 48.06 0 0 1 228 164a4 4 0 0 0 8 0a56.07 56.07 0 0 0-53-55.92m-8.75.21c-.79.08-1.56.19-2.34.3c.5-.63 1-1.28 1.46-1.93c.32.54.63 1.08.89 1.63ZM128 80a51.93 51.93 0 0 1 40.57 19.52a48 48 0 0 1-81.15 0A51.94 51.94 0 0 1 128 80m8.07 49.33a56.1 56.1 0 0 0-8.07 13.92a55.9 55.9 0 0 0-8.07-13.91a56.4 56.4 0 0 0 8.06.58a55 55 0 0 0 8.08-.59m-52-20.74c-.77-.11-1.54-.22-2.32-.3q.42-.81.87-1.62c.46.65.94 1.33 1.44 1.92ZM76 132a51.8 51.8 0 0 1 2.51-15.93a48 48 0 0 1 41.39 67.3A52.08 52.08 0 0 1 76 132m60.1 51.37a48 48 0 0 1 41.39-67.3a52 52 0 0 1-41.39 67.3"/></svg>
React
import type { SVGProps } from "react";
export function PhBiohazardThin(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><path fill="currentColor" d="M183 108.08a60 60 0 0 0-4.94-9.08a56 56 0 0 0-24.21-74.73a4 4 0 1 0-3.7 7.09a48 48 0 0 1 22.37 60.49a59.91 59.91 0 0 0-89.05 0a48 48 0 0 1 22.38-60.5a4 4 0 0 0-3.7-7.1A56 56 0 0 0 77.93 99a61 61 0 0 0-4.93 9.08A56.07 56.07 0 0 0 20 164a4 4 0 0 0 8 0a48.06 48.06 0 0 1 42.08-47.62a60 60 0 0 0 45.75 74.38a48 48 0 0 1-65.67 13.7a4 4 0 1 0-4.32 6.73a56 56 0 0 0 78.69-19.3c1.15.07 2.3.11 3.47.11s2.32 0 3.47-.11a56 56 0 0 0 78.69 19.3a4 4 0 1 0-4.32-6.73a48 48 0 0 1-65.67-13.7a60 60 0 0 0 45.75-74.38A48.06 48.06 0 0 1 228 164a4 4 0 0 0 8 0a56.07 56.07 0 0 0-53-55.92m-8.75.21c-.79.08-1.56.19-2.34.3c.5-.63 1-1.28 1.46-1.93c.32.54.63 1.08.89 1.63ZM128 80a51.93 51.93 0 0 1 40.57 19.52a48 48 0 0 1-81.15 0A51.94 51.94 0 0 1 128 80m8.07 49.33a56.1 56.1 0 0 0-8.07 13.92a55.9 55.9 0 0 0-8.07-13.91a56.4 56.4 0 0 0 8.06.58a55 55 0 0 0 8.08-.59m-52-20.74c-.77-.11-1.54-.22-2.32-.3q.42-.81.87-1.62c.46.65.94 1.33 1.44 1.92ZM76 132a51.8 51.8 0 0 1 2.51-15.93a48 48 0 0 1 41.39 67.3A52.08 52.08 0 0 1 76 132m60.1 51.37a48 48 0 0 1 41.39-67.3a52 52 0 0 1-41.39 67.3"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 256 256"><path fill="currentColor" d="M183 108.08a60 60 0 0 0-4.94-9.08a56 56 0 0 0-24.21-74.73a4 4 0 1 0-3.7 7.09a48 48 0 0 1 22.37 60.49a59.91 59.91 0 0 0-89.05 0a48 48 0 0 1 22.38-60.5a4 4 0 0 0-3.7-7.1A56 56 0 0 0 77.93 99a61 61 0 0 0-4.93 9.08A56.07 56.07 0 0 0 20 164a4 4 0 0 0 8 0a48.06 48.06 0 0 1 42.08-47.62a60 60 0 0 0 45.75 74.38a48 48 0 0 1-65.67 13.7a4 4 0 1 0-4.32 6.73a56 56 0 0 0 78.69-19.3c1.15.07 2.3.11 3.47.11s2.32 0 3.47-.11a56 56 0 0 0 78.69 19.3a4 4 0 1 0-4.32-6.73a48 48 0 0 1-65.67-13.7a60 60 0 0 0 45.75-74.38A48.06 48.06 0 0 1 228 164a4 4 0 0 0 8 0a56.07 56.07 0 0 0-53-55.92m-8.75.21c-.79.08-1.56.19-2.34.3c.5-.63 1-1.28 1.46-1.93c.32.54.63 1.08.89 1.63ZM128 80a51.93 51.93 0 0 1 40.57 19.52a48 48 0 0 1-81.15 0A51.94 51.94 0 0 1 128 80m8.07 49.33a56.1 56.1 0 0 0-8.07 13.92a55.9 55.9 0 0 0-8.07-13.91a56.4 56.4 0 0 0 8.06.58a55 55 0 0 0 8.08-.59m-52-20.74c-.77-.11-1.54-.22-2.32-.3q.42-.81.87-1.62c.46.65.94 1.33 1.44 1.92ZM76 132a51.8 51.8 0 0 1 2.51-15.93a48 48 0 0 1 41.39 67.3A52.08 52.08 0 0 1 76 132m60.1 51.37a48 48 0 0 1 41.39-67.3a52 52 0 0 1-41.39 67.3"/></svg> </template>
CSS
.icon-biohazard-thin {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M183%20108.08a60%2060%200%200%200-4.94-9.08a56%2056%200%200%200-24.21-74.73a4%204%200%201%200-3.7%207.09a48%2048%200%200%201%2022.37%2060.49a59.91%2059.91%200%200%200-89.05%200a48%2048%200%200%201%2022.38-60.5a4%204%200%200%200-3.7-7.1A56%2056%200%200%200%2077.93%2099a61%2061%200%200%200-4.93%209.08A56.07%2056.07%200%200%200%2020%20164a4%204%200%200%200%208%200a48.06%2048.06%200%200%201%2042.08-47.62a60%2060%200%200%200%2045.75%2074.38a48%2048%200%200%201-65.67%2013.7a4%204%200%201%200-4.32%206.73a56%2056%200%200%200%2078.69-19.3c1.15.07%202.3.11%203.47.11s2.32%200%203.47-.11a56%2056%200%200%200%2078.69%2019.3a4%204%200%201%200-4.32-6.73a48%2048%200%200%201-65.67-13.7a60%2060%200%200%200%2045.75-74.38A48.06%2048.06%200%200%201%20228%20164a4%204%200%200%200%208%200a56.07%2056.07%200%200%200-53-55.92m-8.75.21c-.79.08-1.56.19-2.34.3c.5-.63%201-1.28%201.46-1.93c.32.54.63%201.08.89%201.63ZM128%2080a51.93%2051.93%200%200%201%2040.57%2019.52a48%2048%200%200%201-81.15%200A51.94%2051.94%200%200%201%20128%2080m8.07%2049.33a56.1%2056.1%200%200%200-8.07%2013.92a55.9%2055.9%200%200%200-8.07-13.91a56.4%2056.4%200%200%200%208.06.58a55%2055%200%200%200%208.08-.59m-52-20.74c-.77-.11-1.54-.22-2.32-.3q.42-.81.87-1.62c.46.65.94%201.33%201.44%201.92ZM76%20132a51.8%2051.8%200%200%201%202.51-15.93a48%2048%200%200%201%2041.39%2067.3A52.08%2052.08%200%200%201%2076%20132m60.1%2051.37a48%2048%200%200%201%2041.39-67.3a52%2052%200%200%201-41.39%2067.3%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M183%20108.08a60%2060%200%200%200-4.94-9.08a56%2056%200%200%200-24.21-74.73a4%204%200%201%200-3.7%207.09a48%2048%200%200%201%2022.37%2060.49a59.91%2059.91%200%200%200-89.05%200a48%2048%200%200%201%2022.38-60.5a4%204%200%200%200-3.7-7.1A56%2056%200%200%200%2077.93%2099a61%2061%200%200%200-4.93%209.08A56.07%2056.07%200%200%200%2020%20164a4%204%200%200%200%208%200a48.06%2048.06%200%200%201%2042.08-47.62a60%2060%200%200%200%2045.75%2074.38a48%2048%200%200%201-65.67%2013.7a4%204%200%201%200-4.32%206.73a56%2056%200%200%200%2078.69-19.3c1.15.07%202.3.11%203.47.11s2.32%200%203.47-.11a56%2056%200%200%200%2078.69%2019.3a4%204%200%201%200-4.32-6.73a48%2048%200%200%201-65.67-13.7a60%2060%200%200%200%2045.75-74.38A48.06%2048.06%200%200%201%20228%20164a4%204%200%200%200%208%200a56.07%2056.07%200%200%200-53-55.92m-8.75.21c-.79.08-1.56.19-2.34.3c.5-.63%201-1.28%201.46-1.93c.32.54.63%201.08.89%201.63ZM128%2080a51.93%2051.93%200%200%201%2040.57%2019.52a48%2048%200%200%201-81.15%200A51.94%2051.94%200%200%201%20128%2080m8.07%2049.33a56.1%2056.1%200%200%200-8.07%2013.92a55.9%2055.9%200%200%200-8.07-13.91a56.4%2056.4%200%200%200%208.06.58a55%2055%200%200%200%208.08-.59m-52-20.74c-.77-.11-1.54-.22-2.32-.3q.42-.81.87-1.62c.46.65.94%201.33%201.44%201.92ZM76%20132a51.8%2051.8%200%200%201%202.51-15.93a48%2048%200%200%201%2041.39%2067.3A52.08%2052.08%200%200%201%2076%20132m60.1%2051.37a48%2048%200%200%201%2041.39-67.3a52%2052%200%200%201-41.39%2067.3%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/ph/biohazard-thin.svg?color=%231a73e8&size=48