hotdog from Huge Icons by Hugeicons · Stroke · MIT Free for personal and commercial use.

Name
hotdog
Set
Huge Icons
Style
Stroke
Viewbox
24×24
License
MIT

The same icon in other sets

Use the hotdog icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><path d="M19 10.98c.536-.584 1.5-1.382 2.463-2.633c.648-.842.7-2.032.206-2.976c-.91-1.738-3.194-1.863-4.508-.437a29 29 0 0 1-.987 1.019m-9.24 12.471q-1.093.33-2.157.543c-.986.198-1.947-.347-2.442-1.291c-.91-1.737.134-3.98 1.912-4.522q.644-.196 1.293-.433m11.466-7.7c-.127-.6-.647-1.679-1.734-1.897c-1.525-.306-2.18-.113-4.01 1.417C9.8 5.765 6.689 7.167 5.317 7.715c-1.273.509-2.72 1.848-2.236 3.436c.488 1.598 1.394 1.615 1.748 1.775"/><path d="M19.274 11.159c1.087.218 1.607 1.298 1.734 1.897c.16 1.172-.921 2.285-1.482 2.694c-.927.651-3.525 2.47-6.021 3.822c-2.563 1.389-4.068 1.516-4.675 1.389c-.354-.16-1.26-.177-1.748-1.775c-.484-1.588.963-2.927 2.236-3.436c1.372-.548 4.483-1.95 5.947-3.174c1.83-1.53 2.484-1.723 4.009-1.417m-10.93.631c.243-.285.435-.848.581-1.491c.122-.532.808-.42 1.473-.17c.235.09.505.01.638-.204l1.06-1.709a.44.44 0 0 1 .51-.199c.487.163 1.116.437 1.468.26"/></g></svg>

React

import type { SVGProps } from "react";

export function HugeiconsHotdog(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" strokeWidth="1.5"><path d="M19 10.98c.536-.584 1.5-1.382 2.463-2.633c.648-.842.7-2.032.206-2.976c-.91-1.738-3.194-1.863-4.508-.437a29 29 0 0 1-.987 1.019m-9.24 12.471q-1.093.33-2.157.543c-.986.198-1.947-.347-2.442-1.291c-.91-1.737.134-3.98 1.912-4.522q.644-.196 1.293-.433m11.466-7.7c-.127-.6-.647-1.679-1.734-1.897c-1.525-.306-2.18-.113-4.01 1.417C9.8 5.765 6.689 7.167 5.317 7.715c-1.273.509-2.72 1.848-2.236 3.436c.488 1.598 1.394 1.615 1.748 1.775"/><path d="M19.274 11.159c1.087.218 1.607 1.298 1.734 1.897c.16 1.172-.921 2.285-1.482 2.694c-.927.651-3.525 2.47-6.021 3.822c-2.563 1.389-4.068 1.516-4.675 1.389c-.354-.16-1.26-.177-1.748-1.775c-.484-1.588.963-2.927 2.236-3.436c1.372-.548 4.483-1.95 5.947-3.174c1.83-1.53 2.484-1.723 4.009-1.417m-10.93.631c.243-.285.435-.848.581-1.491c.122-.532.808-.42 1.473-.17c.235.09.505.01.638-.204l1.06-1.709a.44.44 0 0 1 .51-.199c.487.163 1.116.437 1.468.26"/></g></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"><path d="M19 10.98c.536-.584 1.5-1.382 2.463-2.633c.648-.842.7-2.032.206-2.976c-.91-1.738-3.194-1.863-4.508-.437a29 29 0 0 1-.987 1.019m-9.24 12.471q-1.093.33-2.157.543c-.986.198-1.947-.347-2.442-1.291c-.91-1.737.134-3.98 1.912-4.522q.644-.196 1.293-.433m11.466-7.7c-.127-.6-.647-1.679-1.734-1.897c-1.525-.306-2.18-.113-4.01 1.417C9.8 5.765 6.689 7.167 5.317 7.715c-1.273.509-2.72 1.848-2.236 3.436c.488 1.598 1.394 1.615 1.748 1.775"/><path d="M19.274 11.159c1.087.218 1.607 1.298 1.734 1.897c.16 1.172-.921 2.285-1.482 2.694c-.927.651-3.525 2.47-6.021 3.822c-2.563 1.389-4.068 1.516-4.675 1.389c-.354-.16-1.26-.177-1.748-1.775c-.484-1.588.963-2.927 2.236-3.436c1.372-.548 4.483-1.95 5.947-3.174c1.83-1.53 2.484-1.723 4.009-1.417m-10.93.631c.243-.285.435-.848.581-1.491c.122-.532.808-.42 1.473-.17c.235.09.505.01.638-.204l1.06-1.709a.44.44 0 0 1 .51-.199c.487.163 1.116.437 1.468.26"/></g></svg>
</template>

CSS

.icon-hotdog {
  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%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%3E%3Cpath%20d%3D%22M19%2010.98c.536-.584%201.5-1.382%202.463-2.633c.648-.842.7-2.032.206-2.976c-.91-1.738-3.194-1.863-4.508-.437a29%2029%200%200%201-.987%201.019m-9.24%2012.471q-1.093.33-2.157.543c-.986.198-1.947-.347-2.442-1.291c-.91-1.737.134-3.98%201.912-4.522q.644-.196%201.293-.433m11.466-7.7c-.127-.6-.647-1.679-1.734-1.897c-1.525-.306-2.18-.113-4.01%201.417C9.8%205.765%206.689%207.167%205.317%207.715c-1.273.509-2.72%201.848-2.236%203.436c.488%201.598%201.394%201.615%201.748%201.775%22%2F%3E%3Cpath%20d%3D%22M19.274%2011.159c1.087.218%201.607%201.298%201.734%201.897c.16%201.172-.921%202.285-1.482%202.694c-.927.651-3.525%202.47-6.021%203.822c-2.563%201.389-4.068%201.516-4.675%201.389c-.354-.16-1.26-.177-1.748-1.775c-.484-1.588.963-2.927%202.236-3.436c1.372-.548%204.483-1.95%205.947-3.174c1.83-1.53%202.484-1.723%204.009-1.417m-10.93.631c.243-.285.435-.848.581-1.491c.122-.532.808-.42%201.473-.17c.235.09.505.01.638-.204l1.06-1.709a.44.44%200%200%201%20.51-.199c.487.163%201.116.437%201.468.26%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%2024%2024%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%3E%3Cpath%20d%3D%22M19%2010.98c.536-.584%201.5-1.382%202.463-2.633c.648-.842.7-2.032.206-2.976c-.91-1.738-3.194-1.863-4.508-.437a29%2029%200%200%201-.987%201.019m-9.24%2012.471q-1.093.33-2.157.543c-.986.198-1.947-.347-2.442-1.291c-.91-1.737.134-3.98%201.912-4.522q.644-.196%201.293-.433m11.466-7.7c-.127-.6-.647-1.679-1.734-1.897c-1.525-.306-2.18-.113-4.01%201.417C9.8%205.765%206.689%207.167%205.317%207.715c-1.273.509-2.72%201.848-2.236%203.436c.488%201.598%201.394%201.615%201.748%201.775%22%2F%3E%3Cpath%20d%3D%22M19.274%2011.159c1.087.218%201.607%201.298%201.734%201.897c.16%201.172-.921%202.285-1.482%202.694c-.927.651-3.525%202.47-6.021%203.822c-2.563%201.389-4.068%201.516-4.675%201.389c-.354-.16-1.26-.177-1.748-1.775c-.484-1.588.963-2.927%202.236-3.436c1.372-.548%204.483-1.95%205.947-3.174c1.83-1.53%202.484-1.723%204.009-1.417m-10.93.631c.243-.285.435-.848.581-1.491c.122-.532.808-.42%201.473-.17c.235.09.505.01.638-.204l1.06-1.709a.44.44%200%200%201%20.51-.199c.487.163%201.116.437%201.468.26%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/hugeicons/hotdog.svg?color=%231a73e8&size=48