pancreatic cancer icon
pancreatic-cancer-outline from Health Icons by Resolve to Save Lives · Outline · Conditions · MIT Free for personal and commercial use.
- Name
- pancreatic-cancer-outline
- Set
- Health Icons
- Style
- Outline
- Category
- Conditions
- Viewbox
- 48×48
- License
- MIT
- Aliases
- pancreatic-cancer2x-outline
1 other variant in Health Icons
More conditions icons from Health Icons
Use the pancreatic cancer icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="currentColor"><path d="M23.468 6v2.4c-.796 0-3.903.071-4.658.208C12.847 9.685 8.329 14.824 8.329 21c0 6.959 5.735 12.6 12.81 12.6c1.286 0 2.329 1.075 2.329 2.4v6h-2.33v-6C12.882 36 6 29.388 6 21S12.881 6 21.139 6z"/><path fill-rule="evenodd" d="M28.126 36.209c0-2.485-1.221-4.675-3.079-5.969c2.156-.993 3.989-2.733 5.018-5.106l.09-.068l1.748-.392c4.6-1.033 7.308-4.072 9.57-8.186c1.097-2.077.286-3.888-.656-4.737c-1.847-1.665-3.67-.52-5.447.594c-1.165.73-2.31 1.45-3.43 1.355c-1.91-.16-3.61-.813-5.29-1.46c-1.053-.403-2.098-.805-3.182-1.08a10.8 10.8 0 0 0-2.683-.36c-1.625 0-3.16.387-4.521 1.074c-.48.193-.934.443-1.36.76c-2.73 2.021-4.347 5.191-4.347 8.366c0 5.749 4.737 10.409 10.582 10.409c2.504 0 4.547 2.037 4.653 4.591q.005.105.005.209V42h2.329zm3.008-13.412l.33-.075c3.792-.85 6.115-3.307 8.248-7.18c.59-1.132.141-1.967-.234-2.306c-.367-.33-.578-.335-.75-.319c-.305.03-.74.192-1.433.594c-.276.16-.549.331-.854.523l-.196.123c-.37.23-.786.487-1.215.716c-.82.437-1.961.93-3.257.82c-2.207-.186-4.156-.936-5.796-1.568l-.353-.135c-1.13-.433-2.125-.792-3.103-.999h-1.382c-4.662 0-8.253 3.69-8.253 8.009c0 3.19 1.958 6.035 4.859 7.306a3.4 3.4 0 0 1-.108-.48c-.22-1.457.571-2.673 1.808-2.887a6.8 6.8 0 0 1 .707-1.92c-.675-1.31-.45-2.85.58-3.59s2.51-.425 3.47.68a6.3 6.3 0 0 1 1.993-.02c.622-1.122 2.003-1.467 3.255-.75c1.216.698 1.901 2.164 1.684 3.458" clip-rule="evenodd"/></g></svg>
React
import type { SVGProps } from "react";
export function HealthiconsPancreaticCancerOutline(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="currentColor"><path d="M23.468 6v2.4c-.796 0-3.903.071-4.658.208C12.847 9.685 8.329 14.824 8.329 21c0 6.959 5.735 12.6 12.81 12.6c1.286 0 2.329 1.075 2.329 2.4v6h-2.33v-6C12.882 36 6 29.388 6 21S12.881 6 21.139 6z"/><path fillRule="evenodd" d="M28.126 36.209c0-2.485-1.221-4.675-3.079-5.969c2.156-.993 3.989-2.733 5.018-5.106l.09-.068l1.748-.392c4.6-1.033 7.308-4.072 9.57-8.186c1.097-2.077.286-3.888-.656-4.737c-1.847-1.665-3.67-.52-5.447.594c-1.165.73-2.31 1.45-3.43 1.355c-1.91-.16-3.61-.813-5.29-1.46c-1.053-.403-2.098-.805-3.182-1.08a10.8 10.8 0 0 0-2.683-.36c-1.625 0-3.16.387-4.521 1.074c-.48.193-.934.443-1.36.76c-2.73 2.021-4.347 5.191-4.347 8.366c0 5.749 4.737 10.409 10.582 10.409c2.504 0 4.547 2.037 4.653 4.591q.005.105.005.209V42h2.329zm3.008-13.412l.33-.075c3.792-.85 6.115-3.307 8.248-7.18c.59-1.132.141-1.967-.234-2.306c-.367-.33-.578-.335-.75-.319c-.305.03-.74.192-1.433.594c-.276.16-.549.331-.854.523l-.196.123c-.37.23-.786.487-1.215.716c-.82.437-1.961.93-3.257.82c-2.207-.186-4.156-.936-5.796-1.568l-.353-.135c-1.13-.433-2.125-.792-3.103-.999h-1.382c-4.662 0-8.253 3.69-8.253 8.009c0 3.19 1.958 6.035 4.859 7.306a3.4 3.4 0 0 1-.108-.48c-.22-1.457.571-2.673 1.808-2.887a6.8 6.8 0 0 1 .707-1.92c-.675-1.31-.45-2.85.58-3.59s2.51-.425 3.47.68a6.3 6.3 0 0 1 1.993-.02c.622-1.122 2.003-1.467 3.255-.75c1.216.698 1.901 2.164 1.684 3.458" clipRule="evenodd"/></g></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 48 48"><g fill="currentColor"><path d="M23.468 6v2.4c-.796 0-3.903.071-4.658.208C12.847 9.685 8.329 14.824 8.329 21c0 6.959 5.735 12.6 12.81 12.6c1.286 0 2.329 1.075 2.329 2.4v6h-2.33v-6C12.882 36 6 29.388 6 21S12.881 6 21.139 6z"/><path fill-rule="evenodd" d="M28.126 36.209c0-2.485-1.221-4.675-3.079-5.969c2.156-.993 3.989-2.733 5.018-5.106l.09-.068l1.748-.392c4.6-1.033 7.308-4.072 9.57-8.186c1.097-2.077.286-3.888-.656-4.737c-1.847-1.665-3.67-.52-5.447.594c-1.165.73-2.31 1.45-3.43 1.355c-1.91-.16-3.61-.813-5.29-1.46c-1.053-.403-2.098-.805-3.182-1.08a10.8 10.8 0 0 0-2.683-.36c-1.625 0-3.16.387-4.521 1.074c-.48.193-.934.443-1.36.76c-2.73 2.021-4.347 5.191-4.347 8.366c0 5.749 4.737 10.409 10.582 10.409c2.504 0 4.547 2.037 4.653 4.591q.005.105.005.209V42h2.329zm3.008-13.412l.33-.075c3.792-.85 6.115-3.307 8.248-7.18c.59-1.132.141-1.967-.234-2.306c-.367-.33-.578-.335-.75-.319c-.305.03-.74.192-1.433.594c-.276.16-.549.331-.854.523l-.196.123c-.37.23-.786.487-1.215.716c-.82.437-1.961.93-3.257.82c-2.207-.186-4.156-.936-5.796-1.568l-.353-.135c-1.13-.433-2.125-.792-3.103-.999h-1.382c-4.662 0-8.253 3.69-8.253 8.009c0 3.19 1.958 6.035 4.859 7.306a3.4 3.4 0 0 1-.108-.48c-.22-1.457.571-2.673 1.808-2.887a6.8 6.8 0 0 1 .707-1.92c-.675-1.31-.45-2.85.58-3.59s2.51-.425 3.47.68a6.3 6.3 0 0 1 1.993-.02c.622-1.122 2.003-1.467 3.255-.75c1.216.698 1.901 2.164 1.684 3.458" clip-rule="evenodd"/></g></svg> </template>
CSS
.icon-pancreatic-cancer-outline {
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%22currentColor%22%3E%3Cpath%20d%3D%22M23.468%206v2.4c-.796%200-3.903.071-4.658.208C12.847%209.685%208.329%2014.824%208.329%2021c0%206.959%205.735%2012.6%2012.81%2012.6c1.286%200%202.329%201.075%202.329%202.4v6h-2.33v-6C12.882%2036%206%2029.388%206%2021S12.881%206%2021.139%206z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M28.126%2036.209c0-2.485-1.221-4.675-3.079-5.969c2.156-.993%203.989-2.733%205.018-5.106l.09-.068l1.748-.392c4.6-1.033%207.308-4.072%209.57-8.186c1.097-2.077.286-3.888-.656-4.737c-1.847-1.665-3.67-.52-5.447.594c-1.165.73-2.31%201.45-3.43%201.355c-1.91-.16-3.61-.813-5.29-1.46c-1.053-.403-2.098-.805-3.182-1.08a10.8%2010.8%200%200%200-2.683-.36c-1.625%200-3.16.387-4.521%201.074c-.48.193-.934.443-1.36.76c-2.73%202.021-4.347%205.191-4.347%208.366c0%205.749%204.737%2010.409%2010.582%2010.409c2.504%200%204.547%202.037%204.653%204.591q.005.105.005.209V42h2.329zm3.008-13.412l.33-.075c3.792-.85%206.115-3.307%208.248-7.18c.59-1.132.141-1.967-.234-2.306c-.367-.33-.578-.335-.75-.319c-.305.03-.74.192-1.433.594c-.276.16-.549.331-.854.523l-.196.123c-.37.23-.786.487-1.215.716c-.82.437-1.961.93-3.257.82c-2.207-.186-4.156-.936-5.796-1.568l-.353-.135c-1.13-.433-2.125-.792-3.103-.999h-1.382c-4.662%200-8.253%203.69-8.253%208.009c0%203.19%201.958%206.035%204.859%207.306a3.4%203.4%200%200%201-.108-.48c-.22-1.457.571-2.673%201.808-2.887a6.8%206.8%200%200%201%20.707-1.92c-.675-1.31-.45-2.85.58-3.59s2.51-.425%203.47.68a6.3%206.3%200%200%201%201.993-.02c.622-1.122%202.003-1.467%203.255-.75c1.216.698%201.901%202.164%201.684%203.458%22%20clip-rule%3D%22evenodd%22%2F%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%22currentColor%22%3E%3Cpath%20d%3D%22M23.468%206v2.4c-.796%200-3.903.071-4.658.208C12.847%209.685%208.329%2014.824%208.329%2021c0%206.959%205.735%2012.6%2012.81%2012.6c1.286%200%202.329%201.075%202.329%202.4v6h-2.33v-6C12.882%2036%206%2029.388%206%2021S12.881%206%2021.139%206z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M28.126%2036.209c0-2.485-1.221-4.675-3.079-5.969c2.156-.993%203.989-2.733%205.018-5.106l.09-.068l1.748-.392c4.6-1.033%207.308-4.072%209.57-8.186c1.097-2.077.286-3.888-.656-4.737c-1.847-1.665-3.67-.52-5.447.594c-1.165.73-2.31%201.45-3.43%201.355c-1.91-.16-3.61-.813-5.29-1.46c-1.053-.403-2.098-.805-3.182-1.08a10.8%2010.8%200%200%200-2.683-.36c-1.625%200-3.16.387-4.521%201.074c-.48.193-.934.443-1.36.76c-2.73%202.021-4.347%205.191-4.347%208.366c0%205.749%204.737%2010.409%2010.582%2010.409c2.504%200%204.547%202.037%204.653%204.591q.005.105.005.209V42h2.329zm3.008-13.412l.33-.075c3.792-.85%206.115-3.307%208.248-7.18c.59-1.132.141-1.967-.234-2.306c-.367-.33-.578-.335-.75-.319c-.305.03-.74.192-1.433.594c-.276.16-.549.331-.854.523l-.196.123c-.37.23-.786.487-1.215.716c-.82.437-1.961.93-3.257.82c-2.207-.186-4.156-.936-5.796-1.568l-.353-.135c-1.13-.433-2.125-.792-3.103-.999h-1.382c-4.662%200-8.253%203.69-8.253%208.009c0%203.19%201.958%206.035%204.859%207.306a3.4%203.4%200%200%201-.108-.48c-.22-1.457.571-2.673%201.808-2.887a6.8%206.8%200%200%201%20.707-1.92c-.675-1.31-.45-2.85.58-3.59s2.51-.425%203.47.68a6.3%206.3%200%200%201%201.993-.02c.622-1.122%202.003-1.467%203.255-.75c1.216.698%201.901%202.164%201.684%203.458%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/healthicons/pancreatic-cancer-outline.svg?color=%231a73e8&size=48