blood pressure monitor icon
blood-pressure-monitor-outline from Health Icons by Resolve to Save Lives · Outline · Devices · MIT Free for personal and commercial use.
- Name
- blood-pressure-monitor-outline
- Set
- Health Icons
- Style
- Outline
- Category
- Devices
- Viewbox
- 48×48
- License
- MIT
- Aliases
- blood-pressure-monitor2x-outline
3 other variants in Health Icons
More devices icons from Health Icons
Use the blood pressure monitor 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.5 26.5l1.5-5l1.5 5l-1.5 2z"/><path fill-rule="evenodd" d="M39.508 18.853A3.5 3.5 0 0 0 42 15.5v-6a3.5 3.5 0 1 0-7 0v6a3.5 3.5 0 0 0 2.507 3.357q.015 1.687.037 3.226v.001c.049 3.651.09 6.694-.177 9.224c-.377 3.58-1.34 5.766-3.483 7.028c-2.88 1.697-7.237 2.285-10.905 1.823c-1.827-.23-3.389-.71-4.462-1.366c-.434-.265-.765-.542-1.006-.828c1.824-.103 3.605-.433 5.054-1.022c1.777-.723 3.387-1.999 3.434-4.014A7.002 7.002 0 0 0 26 19.071v-5.949h-.003Q26 13.062 26 13c0-2.761-4.477-5-10-5S6 10.239 6 13q0 .061.003.122H6V32.84c0 1.985 1.665 3.253 3.43 3.985c1.64.68 3.715 1.06 5.8 1.152c.388 1.064 1.23 1.903 2.244 2.523c1.399.855 3.264 1.393 5.255 1.644c3.966.499 8.804-.1 12.17-2.085c2.966-1.747 4.057-4.738 4.457-8.542c.28-2.654.236-5.882.187-9.603q-.022-1.48-.035-3.061M38.5 8A1.5 1.5 0 0 1 40 9.5v6a1.5 1.5 0 0 1-3 0v-6A1.5 1.5 0 0 1 38.5 8M24 13c0 .215-.226.948-1.823 1.747C20.699 15.485 18.518 16 16 16s-4.7-.515-6.177-1.253C8.226 13.948 8 13.215 8 13s.226-.948 1.823-1.747C11.301 10.515 13.482 10 16 10s4.7.515 6.177 1.253C23.774 12.052 24 12.785 24 13m0 3c-1.825 1.215-4.729 2-8 2q-.46 0-.91-.02v17.988q.459.026.921.03c2.168.026 4.275-.287 5.8-.907c1.513-.617 2.142-1.384 2.186-2.162A7.001 7.001 0 0 1 24 19.07zm6 10a5 5 0 1 1-10 0a5 5 0 0 1 10 0" clip-rule="evenodd"/></g></svg>
React
import type { SVGProps } from "react";
export function HealthiconsBloodPressureMonitorOutline(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.5 26.5l1.5-5l1.5 5l-1.5 2z"/><path fillRule="evenodd" d="M39.508 18.853A3.5 3.5 0 0 0 42 15.5v-6a3.5 3.5 0 1 0-7 0v6a3.5 3.5 0 0 0 2.507 3.357q.015 1.687.037 3.226v.001c.049 3.651.09 6.694-.177 9.224c-.377 3.58-1.34 5.766-3.483 7.028c-2.88 1.697-7.237 2.285-10.905 1.823c-1.827-.23-3.389-.71-4.462-1.366c-.434-.265-.765-.542-1.006-.828c1.824-.103 3.605-.433 5.054-1.022c1.777-.723 3.387-1.999 3.434-4.014A7.002 7.002 0 0 0 26 19.071v-5.949h-.003Q26 13.062 26 13c0-2.761-4.477-5-10-5S6 10.239 6 13q0 .061.003.122H6V32.84c0 1.985 1.665 3.253 3.43 3.985c1.64.68 3.715 1.06 5.8 1.152c.388 1.064 1.23 1.903 2.244 2.523c1.399.855 3.264 1.393 5.255 1.644c3.966.499 8.804-.1 12.17-2.085c2.966-1.747 4.057-4.738 4.457-8.542c.28-2.654.236-5.882.187-9.603q-.022-1.48-.035-3.061M38.5 8A1.5 1.5 0 0 1 40 9.5v6a1.5 1.5 0 0 1-3 0v-6A1.5 1.5 0 0 1 38.5 8M24 13c0 .215-.226.948-1.823 1.747C20.699 15.485 18.518 16 16 16s-4.7-.515-6.177-1.253C8.226 13.948 8 13.215 8 13s.226-.948 1.823-1.747C11.301 10.515 13.482 10 16 10s4.7.515 6.177 1.253C23.774 12.052 24 12.785 24 13m0 3c-1.825 1.215-4.729 2-8 2q-.46 0-.91-.02v17.988q.459.026.921.03c2.168.026 4.275-.287 5.8-.907c1.513-.617 2.142-1.384 2.186-2.162A7.001 7.001 0 0 1 24 19.07zm6 10a5 5 0 1 1-10 0a5 5 0 0 1 10 0" 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.5 26.5l1.5-5l1.5 5l-1.5 2z"/><path fill-rule="evenodd" d="M39.508 18.853A3.5 3.5 0 0 0 42 15.5v-6a3.5 3.5 0 1 0-7 0v6a3.5 3.5 0 0 0 2.507 3.357q.015 1.687.037 3.226v.001c.049 3.651.09 6.694-.177 9.224c-.377 3.58-1.34 5.766-3.483 7.028c-2.88 1.697-7.237 2.285-10.905 1.823c-1.827-.23-3.389-.71-4.462-1.366c-.434-.265-.765-.542-1.006-.828c1.824-.103 3.605-.433 5.054-1.022c1.777-.723 3.387-1.999 3.434-4.014A7.002 7.002 0 0 0 26 19.071v-5.949h-.003Q26 13.062 26 13c0-2.761-4.477-5-10-5S6 10.239 6 13q0 .061.003.122H6V32.84c0 1.985 1.665 3.253 3.43 3.985c1.64.68 3.715 1.06 5.8 1.152c.388 1.064 1.23 1.903 2.244 2.523c1.399.855 3.264 1.393 5.255 1.644c3.966.499 8.804-.1 12.17-2.085c2.966-1.747 4.057-4.738 4.457-8.542c.28-2.654.236-5.882.187-9.603q-.022-1.48-.035-3.061M38.5 8A1.5 1.5 0 0 1 40 9.5v6a1.5 1.5 0 0 1-3 0v-6A1.5 1.5 0 0 1 38.5 8M24 13c0 .215-.226.948-1.823 1.747C20.699 15.485 18.518 16 16 16s-4.7-.515-6.177-1.253C8.226 13.948 8 13.215 8 13s.226-.948 1.823-1.747C11.301 10.515 13.482 10 16 10s4.7.515 6.177 1.253C23.774 12.052 24 12.785 24 13m0 3c-1.825 1.215-4.729 2-8 2q-.46 0-.91-.02v17.988q.459.026.921.03c2.168.026 4.275-.287 5.8-.907c1.513-.617 2.142-1.384 2.186-2.162A7.001 7.001 0 0 1 24 19.07zm6 10a5 5 0 1 1-10 0a5 5 0 0 1 10 0" clip-rule="evenodd"/></g></svg> </template>
CSS
.icon-blood-pressure-monitor-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.5%2026.5l1.5-5l1.5%205l-1.5%202z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M39.508%2018.853A3.5%203.5%200%200%200%2042%2015.5v-6a3.5%203.5%200%201%200-7%200v6a3.5%203.5%200%200%200%202.507%203.357q.015%201.687.037%203.226v.001c.049%203.651.09%206.694-.177%209.224c-.377%203.58-1.34%205.766-3.483%207.028c-2.88%201.697-7.237%202.285-10.905%201.823c-1.827-.23-3.389-.71-4.462-1.366c-.434-.265-.765-.542-1.006-.828c1.824-.103%203.605-.433%205.054-1.022c1.777-.723%203.387-1.999%203.434-4.014A7.002%207.002%200%200%200%2026%2019.071v-5.949h-.003Q26%2013.062%2026%2013c0-2.761-4.477-5-10-5S6%2010.239%206%2013q0%20.061.003.122H6V32.84c0%201.985%201.665%203.253%203.43%203.985c1.64.68%203.715%201.06%205.8%201.152c.388%201.064%201.23%201.903%202.244%202.523c1.399.855%203.264%201.393%205.255%201.644c3.966.499%208.804-.1%2012.17-2.085c2.966-1.747%204.057-4.738%204.457-8.542c.28-2.654.236-5.882.187-9.603q-.022-1.48-.035-3.061M38.5%208A1.5%201.5%200%200%201%2040%209.5v6a1.5%201.5%200%200%201-3%200v-6A1.5%201.5%200%200%201%2038.5%208M24%2013c0%20.215-.226.948-1.823%201.747C20.699%2015.485%2018.518%2016%2016%2016s-4.7-.515-6.177-1.253C8.226%2013.948%208%2013.215%208%2013s.226-.948%201.823-1.747C11.301%2010.515%2013.482%2010%2016%2010s4.7.515%206.177%201.253C23.774%2012.052%2024%2012.785%2024%2013m0%203c-1.825%201.215-4.729%202-8%202q-.46%200-.91-.02v17.988q.459.026.921.03c2.168.026%204.275-.287%205.8-.907c1.513-.617%202.142-1.384%202.186-2.162A7.001%207.001%200%200%201%2024%2019.07zm6%2010a5%205%200%201%201-10%200a5%205%200%200%201%2010%200%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.5%2026.5l1.5-5l1.5%205l-1.5%202z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M39.508%2018.853A3.5%203.5%200%200%200%2042%2015.5v-6a3.5%203.5%200%201%200-7%200v6a3.5%203.5%200%200%200%202.507%203.357q.015%201.687.037%203.226v.001c.049%203.651.09%206.694-.177%209.224c-.377%203.58-1.34%205.766-3.483%207.028c-2.88%201.697-7.237%202.285-10.905%201.823c-1.827-.23-3.389-.71-4.462-1.366c-.434-.265-.765-.542-1.006-.828c1.824-.103%203.605-.433%205.054-1.022c1.777-.723%203.387-1.999%203.434-4.014A7.002%207.002%200%200%200%2026%2019.071v-5.949h-.003Q26%2013.062%2026%2013c0-2.761-4.477-5-10-5S6%2010.239%206%2013q0%20.061.003.122H6V32.84c0%201.985%201.665%203.253%203.43%203.985c1.64.68%203.715%201.06%205.8%201.152c.388%201.064%201.23%201.903%202.244%202.523c1.399.855%203.264%201.393%205.255%201.644c3.966.499%208.804-.1%2012.17-2.085c2.966-1.747%204.057-4.738%204.457-8.542c.28-2.654.236-5.882.187-9.603q-.022-1.48-.035-3.061M38.5%208A1.5%201.5%200%200%201%2040%209.5v6a1.5%201.5%200%200%201-3%200v-6A1.5%201.5%200%200%201%2038.5%208M24%2013c0%20.215-.226.948-1.823%201.747C20.699%2015.485%2018.518%2016%2016%2016s-4.7-.515-6.177-1.253C8.226%2013.948%208%2013.215%208%2013s.226-.948%201.823-1.747C11.301%2010.515%2013.482%2010%2016%2010s4.7.515%206.177%201.253C23.774%2012.052%2024%2012.785%2024%2013m0%203c-1.825%201.215-4.729%202-8%202q-.46%200-.91-.02v17.988q.459.026.921.03c2.168.026%204.275-.287%205.8-.907c1.513-.617%202.142-1.384%202.186-2.162A7.001%207.001%200%200%201%2024%2019.07zm6%2010a5%205%200%201%201-10%200a5%205%200%200%201%2010%200%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/blood-pressure-monitor-outline.svg?color=%231a73e8&size=48