ribbon negative icon
ribbon-negative from Health Icons by Resolve to Save Lives · Filled · MIT Free for personal and commercial use.
- Name
- ribbon-negative
- Set
- Health Icons
- Style
- Filled
- Viewbox
- 48×48
- License
- MIT
Use the ribbon 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(#healthiconsRibbonNegative)"><path fill="currentColor" fill-rule="evenodd" d="M0 0h48v48H0zm26.924 4c.967 0 1.866.217 2.667.675c.685.39 1.462.93 2.037 1.734l-.012.01l.01.014l2.332 3.023l.009.01l.813 1.084a9.414 9.414 0 0 1-.002 11.34l-.007.008l-2.604 3.362l-.004-.005l-.01-.013l-.011-.014l-4.782-6.046l-1.289-1.664l2.703-3.491c-.598-.325-1.278-.518-1.94-.518h-5.248c-.72 0-1.42.178-2.012.518l5.423 7.004l4.792 6.058l.005.007l7.425 9.556a2 2 0 0 1-.24 2.713l-4.067 3.662A2 2 0 0 1 30 42.775l-6.576-8.385l-.001-.001l-4.703-5.97l-5.067-6.424l-.006-.007l-.006-.008a9.414 9.414 0 0 1-.002-11.339l.002-.002l.811-1.082l.008-.01l2.329-3.019l.108-.141C18.007 4.85 19.852 4 21.677 4zm-8.58 8.433c.974-.623 2.12-.924 3.242-.924h5.247c1.132 0 2.243.353 3.177.923a4.03 4.03 0 0 0 .022-4.792l-.1-.13l.015-.011c-.329-.428-.797-.773-1.348-1.088C28.134 6.145 27.585 6 26.924 6h-5.248c-1.243 0-2.466.59-3.167 1.572l-.01.015l-.012.014l-.104.135a3.9 3.9 0 0 0-.774 2.33c0 .811.253 1.68.735 2.367m3.324 24.58l.635.81l-3.938 5.02a2 2 0 0 1-2.781.36l-4.379-3.317a2 2 0 0 1-.368-2.826l5.414-6.926l.112.142l.001.001l4.698 5.963l.005.007zl-4.089 5.214a1 1 0 0 1-1.39.18L11.81 39.09l4.379 3.317a1 1 0 0 0 1.39-.18z" clip-rule="evenodd"/></g><defs><clipPath id="healthiconsRibbonNegative"><path d="M0 0h48v48H0z"/></clipPath></defs></g></svg>
React
import type { SVGProps } from "react";
export function HealthiconsRibbonNegative(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(#healthiconsRibbonNegative)"><path fill="currentColor" fillRule="evenodd" d="M0 0h48v48H0zm26.924 4c.967 0 1.866.217 2.667.675c.685.39 1.462.93 2.037 1.734l-.012.01l.01.014l2.332 3.023l.009.01l.813 1.084a9.414 9.414 0 0 1-.002 11.34l-.007.008l-2.604 3.362l-.004-.005l-.01-.013l-.011-.014l-4.782-6.046l-1.289-1.664l2.703-3.491c-.598-.325-1.278-.518-1.94-.518h-5.248c-.72 0-1.42.178-2.012.518l5.423 7.004l4.792 6.058l.005.007l7.425 9.556a2 2 0 0 1-.24 2.713l-4.067 3.662A2 2 0 0 1 30 42.775l-6.576-8.385l-.001-.001l-4.703-5.97l-5.067-6.424l-.006-.007l-.006-.008a9.414 9.414 0 0 1-.002-11.339l.002-.002l.811-1.082l.008-.01l2.329-3.019l.108-.141C18.007 4.85 19.852 4 21.677 4zm-8.58 8.433c.974-.623 2.12-.924 3.242-.924h5.247c1.132 0 2.243.353 3.177.923a4.03 4.03 0 0 0 .022-4.792l-.1-.13l.015-.011c-.329-.428-.797-.773-1.348-1.088C28.134 6.145 27.585 6 26.924 6h-5.248c-1.243 0-2.466.59-3.167 1.572l-.01.015l-.012.014l-.104.135a3.9 3.9 0 0 0-.774 2.33c0 .811.253 1.68.735 2.367m3.324 24.58l.635.81l-3.938 5.02a2 2 0 0 1-2.781.36l-4.379-3.317a2 2 0 0 1-.368-2.826l5.414-6.926l.112.142l.001.001l4.698 5.963l.005.007zl-4.089 5.214a1 1 0 0 1-1.39.18L11.81 39.09l4.379 3.317a1 1 0 0 0 1.39-.18z" clipRule="evenodd"/></g><defs><clipPath id="healthiconsRibbonNegative"><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(#healthiconsRibbonNegative)"><path fill="currentColor" fill-rule="evenodd" d="M0 0h48v48H0zm26.924 4c.967 0 1.866.217 2.667.675c.685.39 1.462.93 2.037 1.734l-.012.01l.01.014l2.332 3.023l.009.01l.813 1.084a9.414 9.414 0 0 1-.002 11.34l-.007.008l-2.604 3.362l-.004-.005l-.01-.013l-.011-.014l-4.782-6.046l-1.289-1.664l2.703-3.491c-.598-.325-1.278-.518-1.94-.518h-5.248c-.72 0-1.42.178-2.012.518l5.423 7.004l4.792 6.058l.005.007l7.425 9.556a2 2 0 0 1-.24 2.713l-4.067 3.662A2 2 0 0 1 30 42.775l-6.576-8.385l-.001-.001l-4.703-5.97l-5.067-6.424l-.006-.007l-.006-.008a9.414 9.414 0 0 1-.002-11.339l.002-.002l.811-1.082l.008-.01l2.329-3.019l.108-.141C18.007 4.85 19.852 4 21.677 4zm-8.58 8.433c.974-.623 2.12-.924 3.242-.924h5.247c1.132 0 2.243.353 3.177.923a4.03 4.03 0 0 0 .022-4.792l-.1-.13l.015-.011c-.329-.428-.797-.773-1.348-1.088C28.134 6.145 27.585 6 26.924 6h-5.248c-1.243 0-2.466.59-3.167 1.572l-.01.015l-.012.014l-.104.135a3.9 3.9 0 0 0-.774 2.33c0 .811.253 1.68.735 2.367m3.324 24.58l.635.81l-3.938 5.02a2 2 0 0 1-2.781.36l-4.379-3.317a2 2 0 0 1-.368-2.826l5.414-6.926l.112.142l.001.001l4.698 5.963l.005.007zl-4.089 5.214a1 1 0 0 1-1.39.18L11.81 39.09l4.379 3.317a1 1 0 0 0 1.39-.18z" clip-rule="evenodd"/></g><defs><clipPath id="healthiconsRibbonNegative"><path d="M0 0h48v48H0z"/></clipPath></defs></g></svg> </template>
CSS
.icon-ribbon-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(%23healthiconsRibbonNegative)%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M0%200h48v48H0zm26.924%204c.967%200%201.866.217%202.667.675c.685.39%201.462.93%202.037%201.734l-.012.01l.01.014l2.332%203.023l.009.01l.813%201.084a9.414%209.414%200%200%201-.002%2011.34l-.007.008l-2.604%203.362l-.004-.005l-.01-.013l-.011-.014l-4.782-6.046l-1.289-1.664l2.703-3.491c-.598-.325-1.278-.518-1.94-.518h-5.248c-.72%200-1.42.178-2.012.518l5.423%207.004l4.792%206.058l.005.007l7.425%209.556a2%202%200%200%201-.24%202.713l-4.067%203.662A2%202%200%200%201%2030%2042.775l-6.576-8.385l-.001-.001l-4.703-5.97l-5.067-6.424l-.006-.007l-.006-.008a9.414%209.414%200%200%201-.002-11.339l.002-.002l.811-1.082l.008-.01l2.329-3.019l.108-.141C18.007%204.85%2019.852%204%2021.677%204zm-8.58%208.433c.974-.623%202.12-.924%203.242-.924h5.247c1.132%200%202.243.353%203.177.923a4.03%204.03%200%200%200%20.022-4.792l-.1-.13l.015-.011c-.329-.428-.797-.773-1.348-1.088C28.134%206.145%2027.585%206%2026.924%206h-5.248c-1.243%200-2.466.59-3.167%201.572l-.01.015l-.012.014l-.104.135a3.9%203.9%200%200%200-.774%202.33c0%20.811.253%201.68.735%202.367m3.324%2024.58l.635.81l-3.938%205.02a2%202%200%200%201-2.781.36l-4.379-3.317a2%202%200%200%201-.368-2.826l5.414-6.926l.112.142l.001.001l4.698%205.963l.005.007zl-4.089%205.214a1%201%200%200%201-1.39.18L11.81%2039.09l4.379%203.317a1%201%200%200%200%201.39-.18z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22healthiconsRibbonNegative%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(%23healthiconsRibbonNegative)%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M0%200h48v48H0zm26.924%204c.967%200%201.866.217%202.667.675c.685.39%201.462.93%202.037%201.734l-.012.01l.01.014l2.332%203.023l.009.01l.813%201.084a9.414%209.414%200%200%201-.002%2011.34l-.007.008l-2.604%203.362l-.004-.005l-.01-.013l-.011-.014l-4.782-6.046l-1.289-1.664l2.703-3.491c-.598-.325-1.278-.518-1.94-.518h-5.248c-.72%200-1.42.178-2.012.518l5.423%207.004l4.792%206.058l.005.007l7.425%209.556a2%202%200%200%201-.24%202.713l-4.067%203.662A2%202%200%200%201%2030%2042.775l-6.576-8.385l-.001-.001l-4.703-5.97l-5.067-6.424l-.006-.007l-.006-.008a9.414%209.414%200%200%201-.002-11.339l.002-.002l.811-1.082l.008-.01l2.329-3.019l.108-.141C18.007%204.85%2019.852%204%2021.677%204zm-8.58%208.433c.974-.623%202.12-.924%203.242-.924h5.247c1.132%200%202.243.353%203.177.923a4.03%204.03%200%200%200%20.022-4.792l-.1-.13l.015-.011c-.329-.428-.797-.773-1.348-1.088C28.134%206.145%2027.585%206%2026.924%206h-5.248c-1.243%200-2.466.59-3.167%201.572l-.01.015l-.012.014l-.104.135a3.9%203.9%200%200%200-.774%202.33c0%20.811.253%201.68.735%202.367m3.324%2024.58l.635.81l-3.938%205.02a2%202%200%200%201-2.781.36l-4.379-3.317a2%202%200%200%201-.368-2.826l5.414-6.926l.112.142l.001.001l4.698%205.963l.005.007zl-4.089%205.214a1%201%200%200%201-1.39.18L11.81%2039.09l4.379%203.317a1%201%200%200%200%201.39-.18z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22healthiconsRibbonNegative%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/ribbon-negative.svg?color=%231a73e8&size=48