tac negative icon
tac-negative from Health Icons by Resolve to Save Lives · Filled · MIT Free for personal and commercial use.
- Name
- tac-negative
- Set
- Health Icons
- Style
- Filled
- Viewbox
- 48×48
- License
- MIT
Use the tac negative icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="none"><g clip-path="url(#healthiconsTacNegative)"><path fill="currentColor" fill-rule="evenodd" d="M48 0H0v48h48zM10.594 33.455A16.93 16.93 0 0 1 7 23c0-9.389 7.611-17 17-17s17 7.611 17 17c0 3.942-1.342 7.571-3.594 10.455l1.263 2.989C39.783 39.08 37.847 42 34.984 42H13.016c-2.863 0-4.799-2.92-3.685-5.556zM34.984 40h-4.826l-1.6-8h1.027l1.992 5.974a1.5 1.5 0 1 0 2.846-.948l-2.544-7.633A3.5 3.5 0 0 0 28.559 27h-9.117a3.5 3.5 0 0 0-3.32 2.393l-2.545 7.633a1.5 1.5 0 1 0 2.846.948L18.415 32H19.6l-.8 4l-.8 4h-4.984a2 2 0 0 1-1.842-2.778l4.727-11.19a2 2 0 0 1 1.842-1.222h1.621a6 6 0 0 1-1.086-2h-.535c-.765 0-1.495.218-2.117.606a8.526 8.526 0 1 1 16.843.061a4 4 0 0 0-2.212-.667h-.535a6 6 0 0 1-1.086 2h1.621a2 2 0 0 1 1.843 1.22l4.728 11.19A2 2 0 0 1 34.984 40M24.132 10.842c-1.48-.01-2.946.271-4.316.827l-.753-1.853a13.26 13.26 0 0 1 10.151.072l-.778 1.842a11.3 11.3 0 0 0-4.304-.888M28 21a4 4 0 1 1-8 0a4 4 0 0 1 8 0" clip-rule="evenodd"/></g><defs><clipPath id="healthiconsTacNegative"><path d="M0 0h48v48H0z"/></clipPath></defs></g></svg>
React
import type { SVGProps } from "react";
export function HealthiconsTacNegative(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="none"><g clipPath="url(#healthiconsTacNegative)"><path fill="currentColor" fillRule="evenodd" d="M48 0H0v48h48zM10.594 33.455A16.93 16.93 0 0 1 7 23c0-9.389 7.611-17 17-17s17 7.611 17 17c0 3.942-1.342 7.571-3.594 10.455l1.263 2.989C39.783 39.08 37.847 42 34.984 42H13.016c-2.863 0-4.799-2.92-3.685-5.556zM34.984 40h-4.826l-1.6-8h1.027l1.992 5.974a1.5 1.5 0 1 0 2.846-.948l-2.544-7.633A3.5 3.5 0 0 0 28.559 27h-9.117a3.5 3.5 0 0 0-3.32 2.393l-2.545 7.633a1.5 1.5 0 1 0 2.846.948L18.415 32H19.6l-.8 4l-.8 4h-4.984a2 2 0 0 1-1.842-2.778l4.727-11.19a2 2 0 0 1 1.842-1.222h1.621a6 6 0 0 1-1.086-2h-.535c-.765 0-1.495.218-2.117.606a8.526 8.526 0 1 1 16.843.061a4 4 0 0 0-2.212-.667h-.535a6 6 0 0 1-1.086 2h1.621a2 2 0 0 1 1.843 1.22l4.728 11.19A2 2 0 0 1 34.984 40M24.132 10.842c-1.48-.01-2.946.271-4.316.827l-.753-1.853a13.26 13.26 0 0 1 10.151.072l-.778 1.842a11.3 11.3 0 0 0-4.304-.888M28 21a4 4 0 1 1-8 0a4 4 0 0 1 8 0" clipRule="evenodd"/></g><defs><clipPath id="healthiconsTacNegative"><path d="M0 0h48v48H0z"/></clipPath></defs></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="none"><g clip-path="url(#healthiconsTacNegative)"><path fill="currentColor" fill-rule="evenodd" d="M48 0H0v48h48zM10.594 33.455A16.93 16.93 0 0 1 7 23c0-9.389 7.611-17 17-17s17 7.611 17 17c0 3.942-1.342 7.571-3.594 10.455l1.263 2.989C39.783 39.08 37.847 42 34.984 42H13.016c-2.863 0-4.799-2.92-3.685-5.556zM34.984 40h-4.826l-1.6-8h1.027l1.992 5.974a1.5 1.5 0 1 0 2.846-.948l-2.544-7.633A3.5 3.5 0 0 0 28.559 27h-9.117a3.5 3.5 0 0 0-3.32 2.393l-2.545 7.633a1.5 1.5 0 1 0 2.846.948L18.415 32H19.6l-.8 4l-.8 4h-4.984a2 2 0 0 1-1.842-2.778l4.727-11.19a2 2 0 0 1 1.842-1.222h1.621a6 6 0 0 1-1.086-2h-.535c-.765 0-1.495.218-2.117.606a8.526 8.526 0 1 1 16.843.061a4 4 0 0 0-2.212-.667h-.535a6 6 0 0 1-1.086 2h1.621a2 2 0 0 1 1.843 1.22l4.728 11.19A2 2 0 0 1 34.984 40M24.132 10.842c-1.48-.01-2.946.271-4.316.827l-.753-1.853a13.26 13.26 0 0 1 10.151.072l-.778 1.842a11.3 11.3 0 0 0-4.304-.888M28 21a4 4 0 1 1-8 0a4 4 0 0 1 8 0" clip-rule="evenodd"/></g><defs><clipPath id="healthiconsTacNegative"><path d="M0 0h48v48H0z"/></clipPath></defs></g></svg> </template>
CSS
.icon-tac-negative {
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%2048%2048%22%3E%3Cg%20fill%3D%22none%22%3E%3Cg%20clip-path%3D%22url(%23healthiconsTacNegative)%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M48%200H0v48h48zM10.594%2033.455A16.93%2016.93%200%200%201%207%2023c0-9.389%207.611-17%2017-17s17%207.611%2017%2017c0%203.942-1.342%207.571-3.594%2010.455l1.263%202.989C39.783%2039.08%2037.847%2042%2034.984%2042H13.016c-2.863%200-4.799-2.92-3.685-5.556zM34.984%2040h-4.826l-1.6-8h1.027l1.992%205.974a1.5%201.5%200%201%200%202.846-.948l-2.544-7.633A3.5%203.5%200%200%200%2028.559%2027h-9.117a3.5%203.5%200%200%200-3.32%202.393l-2.545%207.633a1.5%201.5%200%201%200%202.846.948L18.415%2032H19.6l-.8%204l-.8%204h-4.984a2%202%200%200%201-1.842-2.778l4.727-11.19a2%202%200%200%201%201.842-1.222h1.621a6%206%200%200%201-1.086-2h-.535c-.765%200-1.495.218-2.117.606a8.526%208.526%200%201%201%2016.843.061a4%204%200%200%200-2.212-.667h-.535a6%206%200%200%201-1.086%202h1.621a2%202%200%200%201%201.843%201.22l4.728%2011.19A2%202%200%200%201%2034.984%2040M24.132%2010.842c-1.48-.01-2.946.271-4.316.827l-.753-1.853a13.26%2013.26%200%200%201%2010.151.072l-.778%201.842a11.3%2011.3%200%200%200-4.304-.888M28%2021a4%204%200%201%201-8%200a4%204%200%200%201%208%200%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22healthiconsTacNegative%22%3E%3Cpath%20d%3D%22M0%200h48v48H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fg%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%2048%2048%22%3E%3Cg%20fill%3D%22none%22%3E%3Cg%20clip-path%3D%22url(%23healthiconsTacNegative)%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M48%200H0v48h48zM10.594%2033.455A16.93%2016.93%200%200%201%207%2023c0-9.389%207.611-17%2017-17s17%207.611%2017%2017c0%203.942-1.342%207.571-3.594%2010.455l1.263%202.989C39.783%2039.08%2037.847%2042%2034.984%2042H13.016c-2.863%200-4.799-2.92-3.685-5.556zM34.984%2040h-4.826l-1.6-8h1.027l1.992%205.974a1.5%201.5%200%201%200%202.846-.948l-2.544-7.633A3.5%203.5%200%200%200%2028.559%2027h-9.117a3.5%203.5%200%200%200-3.32%202.393l-2.545%207.633a1.5%201.5%200%201%200%202.846.948L18.415%2032H19.6l-.8%204l-.8%204h-4.984a2%202%200%200%201-1.842-2.778l4.727-11.19a2%202%200%200%201%201.842-1.222h1.621a6%206%200%200%201-1.086-2h-.535c-.765%200-1.495.218-2.117.606a8.526%208.526%200%201%201%2016.843.061a4%204%200%200%200-2.212-.667h-.535a6%206%200%200%201-1.086%202h1.621a2%202%200%200%201%201.843%201.22l4.728%2011.19A2%202%200%200%201%2034.984%2040M24.132%2010.842c-1.48-.01-2.946.271-4.316.827l-.753-1.853a13.26%2013.26%200%200%201%2010.151.072l-.778%201.842a11.3%2011.3%200%200%200-4.304-.888M28%2021a4%204%200%201%201-8%200a4%204%200%200%201%208%200%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22healthiconsTacNegative%22%3E%3Cpath%20d%3D%22M0%200h48v48H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/healthicons/tac-negative.svg?color=%231a73e8&size=48