spine icon
spine-outline-24px from Health Icons by Resolve to Save Lives · Outline 24px · Body · MIT Free for personal and commercial use.
- Name
- spine-outline-24px
- Set
- Health Icons
- Style
- Outline 24px
- Category
- Body
- Viewbox
- 24×24
- License
- MIT
3 other variants in Health Icons
The same icon in other sets
More body icons from Health Icons
Use the spine icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M18 5v-.678c0-1.507-1.644-2.535-3.1-2.148c-.892.236-1.896.414-2.9.414s-2.008-.178-2.9-.414C7.645 1.787 6 2.814 6 4.322V5H5a1 1 0 0 0 0 2h1v.313c0 .581.254 1.129.713 1.452c-.432.393-.713.934-.713 1.557V11H5a1 1 0 1 0 0 2h1v.313c0 .581.254 1.129.713 1.452c-.432.393-.713.934-.713 1.557V17H5a1 1 0 1 0 0 2h1v.313c0 .684.352 1.322.976 1.602C8.016 21.38 9.813 22 12 22s3.984-.62 5.024-1.085c.624-.28.976-.918.976-1.602V19h1a1 1 0 1 0 0-2h-1v-.678c0-.623-.28-1.164-.713-1.557c.46-.323.713-.87.713-1.452V13h1a1 1 0 1 0 0-2h-1v-.678c0-.623-.28-1.164-.713-1.557c.46-.323.713-.87.713-1.452V7h1a1 1 0 1 0 0-2zm-2-.678V4.32l-.006-.015a.4.4 0 0 0-.11-.106a.6.6 0 0 0-.472-.093c-1 .265-2.183.481-3.412.481s-2.412-.216-3.412-.481a.6.6 0 0 0-.471.093a.4.4 0 0 0-.111.106Q7.998 4.32 8 4.32v2.86c.897.377 2.317.82 4 .82s3.103-.443 4-.82zm0 12v-.001l-.006-.015a.4.4 0 0 0-.11-.106a.6.6 0 0 0-.472-.093c-1 .265-2.183.481-3.412.481s-2.412-.216-3.412-.481a.6.6 0 0 0-.471.093a.4.4 0 0 0-.111.106q-.008.015-.006.015v2.858a10.5 10.5 0 0 0 4 .82a10.5 10.5 0 0 0 4-.82zm-8-3.143V10.32l.006-.015a.4.4 0 0 1 .11-.106a.6.6 0 0 1 .472-.093c1 .265 2.183.481 3.412.481s2.412-.216 3.412-.481a.6.6 0 0 1 .471.093a.4.4 0 0 1 .111.106q.008.015.006.015v2.858a10.5 10.5 0 0 1-4 .82a10.5 10.5 0 0 1-4-.82" clip-rule="evenodd"/></svg>
React
import type { SVGProps } from "react";
export function HealthiconsSpineOutline24px(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fillRule="evenodd" d="M18 5v-.678c0-1.507-1.644-2.535-3.1-2.148c-.892.236-1.896.414-2.9.414s-2.008-.178-2.9-.414C7.645 1.787 6 2.814 6 4.322V5H5a1 1 0 0 0 0 2h1v.313c0 .581.254 1.129.713 1.452c-.432.393-.713.934-.713 1.557V11H5a1 1 0 1 0 0 2h1v.313c0 .581.254 1.129.713 1.452c-.432.393-.713.934-.713 1.557V17H5a1 1 0 1 0 0 2h1v.313c0 .684.352 1.322.976 1.602C8.016 21.38 9.813 22 12 22s3.984-.62 5.024-1.085c.624-.28.976-.918.976-1.602V19h1a1 1 0 1 0 0-2h-1v-.678c0-.623-.28-1.164-.713-1.557c.46-.323.713-.87.713-1.452V13h1a1 1 0 1 0 0-2h-1v-.678c0-.623-.28-1.164-.713-1.557c.46-.323.713-.87.713-1.452V7h1a1 1 0 1 0 0-2zm-2-.678V4.32l-.006-.015a.4.4 0 0 0-.11-.106a.6.6 0 0 0-.472-.093c-1 .265-2.183.481-3.412.481s-2.412-.216-3.412-.481a.6.6 0 0 0-.471.093a.4.4 0 0 0-.111.106Q7.998 4.32 8 4.32v2.86c.897.377 2.317.82 4 .82s3.103-.443 4-.82zm0 12v-.001l-.006-.015a.4.4 0 0 0-.11-.106a.6.6 0 0 0-.472-.093c-1 .265-2.183.481-3.412.481s-2.412-.216-3.412-.481a.6.6 0 0 0-.471.093a.4.4 0 0 0-.111.106q-.008.015-.006.015v2.858a10.5 10.5 0 0 0 4 .82a10.5 10.5 0 0 0 4-.82zm-8-3.143V10.32l.006-.015a.4.4 0 0 1 .11-.106a.6.6 0 0 1 .472-.093c1 .265 2.183.481 3.412.481s2.412-.216 3.412-.481a.6.6 0 0 1 .471.093a.4.4 0 0 1 .111.106q.008.015.006.015v2.858a10.5 10.5 0 0 1-4 .82a10.5 10.5 0 0 1-4-.82" clipRule="evenodd"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M18 5v-.678c0-1.507-1.644-2.535-3.1-2.148c-.892.236-1.896.414-2.9.414s-2.008-.178-2.9-.414C7.645 1.787 6 2.814 6 4.322V5H5a1 1 0 0 0 0 2h1v.313c0 .581.254 1.129.713 1.452c-.432.393-.713.934-.713 1.557V11H5a1 1 0 1 0 0 2h1v.313c0 .581.254 1.129.713 1.452c-.432.393-.713.934-.713 1.557V17H5a1 1 0 1 0 0 2h1v.313c0 .684.352 1.322.976 1.602C8.016 21.38 9.813 22 12 22s3.984-.62 5.024-1.085c.624-.28.976-.918.976-1.602V19h1a1 1 0 1 0 0-2h-1v-.678c0-.623-.28-1.164-.713-1.557c.46-.323.713-.87.713-1.452V13h1a1 1 0 1 0 0-2h-1v-.678c0-.623-.28-1.164-.713-1.557c.46-.323.713-.87.713-1.452V7h1a1 1 0 1 0 0-2zm-2-.678V4.32l-.006-.015a.4.4 0 0 0-.11-.106a.6.6 0 0 0-.472-.093c-1 .265-2.183.481-3.412.481s-2.412-.216-3.412-.481a.6.6 0 0 0-.471.093a.4.4 0 0 0-.111.106Q7.998 4.32 8 4.32v2.86c.897.377 2.317.82 4 .82s3.103-.443 4-.82zm0 12v-.001l-.006-.015a.4.4 0 0 0-.11-.106a.6.6 0 0 0-.472-.093c-1 .265-2.183.481-3.412.481s-2.412-.216-3.412-.481a.6.6 0 0 0-.471.093a.4.4 0 0 0-.111.106q-.008.015-.006.015v2.858a10.5 10.5 0 0 0 4 .82a10.5 10.5 0 0 0 4-.82zm-8-3.143V10.32l.006-.015a.4.4 0 0 1 .11-.106a.6.6 0 0 1 .472-.093c1 .265 2.183.481 3.412.481s2.412-.216 3.412-.481a.6.6 0 0 1 .471.093a.4.4 0 0 1 .111.106q.008.015.006.015v2.858a10.5 10.5 0 0 1-4 .82a10.5 10.5 0 0 1-4-.82" clip-rule="evenodd"/></svg> </template>
CSS
.icon-spine-outline-24px {
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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M18%205v-.678c0-1.507-1.644-2.535-3.1-2.148c-.892.236-1.896.414-2.9.414s-2.008-.178-2.9-.414C7.645%201.787%206%202.814%206%204.322V5H5a1%201%200%200%200%200%202h1v.313c0%20.581.254%201.129.713%201.452c-.432.393-.713.934-.713%201.557V11H5a1%201%200%201%200%200%202h1v.313c0%20.581.254%201.129.713%201.452c-.432.393-.713.934-.713%201.557V17H5a1%201%200%201%200%200%202h1v.313c0%20.684.352%201.322.976%201.602C8.016%2021.38%209.813%2022%2012%2022s3.984-.62%205.024-1.085c.624-.28.976-.918.976-1.602V19h1a1%201%200%201%200%200-2h-1v-.678c0-.623-.28-1.164-.713-1.557c.46-.323.713-.87.713-1.452V13h1a1%201%200%201%200%200-2h-1v-.678c0-.623-.28-1.164-.713-1.557c.46-.323.713-.87.713-1.452V7h1a1%201%200%201%200%200-2zm-2-.678V4.32l-.006-.015a.4.4%200%200%200-.11-.106a.6.6%200%200%200-.472-.093c-1%20.265-2.183.481-3.412.481s-2.412-.216-3.412-.481a.6.6%200%200%200-.471.093a.4.4%200%200%200-.111.106Q7.998%204.32%208%204.32v2.86c.897.377%202.317.82%204%20.82s3.103-.443%204-.82zm0%2012v-.001l-.006-.015a.4.4%200%200%200-.11-.106a.6.6%200%200%200-.472-.093c-1%20.265-2.183.481-3.412.481s-2.412-.216-3.412-.481a.6.6%200%200%200-.471.093a.4.4%200%200%200-.111.106q-.008.015-.006.015v2.858a10.5%2010.5%200%200%200%204%20.82a10.5%2010.5%200%200%200%204-.82zm-8-3.143V10.32l.006-.015a.4.4%200%200%201%20.11-.106a.6.6%200%200%201%20.472-.093c1%20.265%202.183.481%203.412.481s2.412-.216%203.412-.481a.6.6%200%200%201%20.471.093a.4.4%200%200%201%20.111.106q.008.015.006.015v2.858a10.5%2010.5%200%200%201-4%20.82a10.5%2010.5%200%200%201-4-.82%22%20clip-rule%3D%22evenodd%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%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20fill-rule%3D%22evenodd%22%20d%3D%22M18%205v-.678c0-1.507-1.644-2.535-3.1-2.148c-.892.236-1.896.414-2.9.414s-2.008-.178-2.9-.414C7.645%201.787%206%202.814%206%204.322V5H5a1%201%200%200%200%200%202h1v.313c0%20.581.254%201.129.713%201.452c-.432.393-.713.934-.713%201.557V11H5a1%201%200%201%200%200%202h1v.313c0%20.581.254%201.129.713%201.452c-.432.393-.713.934-.713%201.557V17H5a1%201%200%201%200%200%202h1v.313c0%20.684.352%201.322.976%201.602C8.016%2021.38%209.813%2022%2012%2022s3.984-.62%205.024-1.085c.624-.28.976-.918.976-1.602V19h1a1%201%200%201%200%200-2h-1v-.678c0-.623-.28-1.164-.713-1.557c.46-.323.713-.87.713-1.452V13h1a1%201%200%201%200%200-2h-1v-.678c0-.623-.28-1.164-.713-1.557c.46-.323.713-.87.713-1.452V7h1a1%201%200%201%200%200-2zm-2-.678V4.32l-.006-.015a.4.4%200%200%200-.11-.106a.6.6%200%200%200-.472-.093c-1%20.265-2.183.481-3.412.481s-2.412-.216-3.412-.481a.6.6%200%200%200-.471.093a.4.4%200%200%200-.111.106Q7.998%204.32%208%204.32v2.86c.897.377%202.317.82%204%20.82s3.103-.443%204-.82zm0%2012v-.001l-.006-.015a.4.4%200%200%200-.11-.106a.6.6%200%200%200-.472-.093c-1%20.265-2.183.481-3.412.481s-2.412-.216-3.412-.481a.6.6%200%200%200-.471.093a.4.4%200%200%200-.111.106q-.008.015-.006.015v2.858a10.5%2010.5%200%200%200%204%20.82a10.5%2010.5%200%200%200%204-.82zm-8-3.143V10.32l.006-.015a.4.4%200%200%201%20.11-.106a.6.6%200%200%201%20.472-.093c1%20.265%202.183.481%203.412.481s2.412-.216%203.412-.481a.6.6%200%200%201%20.471.093a.4.4%200%200%201%20.111.106q.008.015.006.015v2.858a10.5%2010.5%200%200%201-4%20.82a10.5%2010.5%200%200%201-4-.82%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/healthicons/spine-outline-24px.svg?color=%231a73e8&size=48