squirrel icon

squirrel-16 from Octicons by GitHub · 16 · MIT Free for personal and commercial use.

Name
squirrel-16
Set
Octicons
Style
16
Viewbox
16×16
License
MIT

2 other variants in Octicons

The same icon in other sets

Use the squirrel icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M3.499.75a.75.75 0 0 1 1.5 0v.996C5.9 2.903 6.793 3.65 7.662 4.376l.24.202c-.036-.694.055-1.422.426-2.163C9.1.873 10.794-.045 12.622.26C14.408.558 16 1.94 16 4.25c0 1.278-.954 2.575-2.44 2.734l.146.508l.065.22c.203.701.412 1.455.476 2.226c.142 1.707-.4 3.03-1.487 3.898C11.714 14.671 10.27 15 8.75 15h-6a.75.75 0 0 1 0-1.5h1.376a4.5 4.5 0 0 1-.563-1.191a3.84 3.84 0 0 1-.05-2.063a4.65 4.65 0 0 1-2.025-.293a.75.75 0 0 1 .525-1.406c1.357.507 2.376-.006 2.698-.318l.009-.01a.747.747 0 0 1 1.06 0a.75.75 0 0 1-.012 1.074c-.912.92-.992 1.835-.768 2.586c.221.74.745 1.337 1.196 1.621H8.75c1.343 0 2.398-.296 3.074-.836c.635-.507 1.036-1.31.928-2.602c-.05-.603-.216-1.224-.422-1.93l-.064-.221c-.12-.407-.246-.84-.353-1.29a2.4 2.4 0 0 1-.507-.441a3.1 3.1 0 0 1-.633-1.248a.75.75 0 0 1 1.455-.364c.046.185.144.436.31.627c.146.168.353.305.712.305c.738 0 1.25-.615 1.25-1.25c0-1.47-.95-2.315-2.123-2.51c-1.172-.196-2.227.387-2.706 1.345c-.46.92-.27 1.774.019 3.062l.042.19l.01.05c.348.443.666.949.94 1.553a.75.75 0 1 1-1.365.62c-.553-1.217-1.32-1.94-2.3-2.768L6.7 5.527c-.814-.68-1.75-1.462-2.692-2.619a3.7 3.7 0 0 0-1.023.88c-.406.495-.663 1.036-.722 1.508c.116.122.306.21.591.239c.388.038.797-.06 1.032-.19a.75.75 0 0 1 .728 1.31c-.515.287-1.23.439-1.906.373c-.682-.067-1.473-.38-1.879-1.193L.75 5.677V5.5c0-.984.48-1.94 1.077-2.664c.46-.559 1.05-1.055 1.673-1.353z"/></svg>

React

import type { SVGProps } from "react";

export function OcticonSquirrel16(props: SVGProps<SVGSVGElement>) {
  return (
    <svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M3.499.75a.75.75 0 0 1 1.5 0v.996C5.9 2.903 6.793 3.65 7.662 4.376l.24.202c-.036-.694.055-1.422.426-2.163C9.1.873 10.794-.045 12.622.26C14.408.558 16 1.94 16 4.25c0 1.278-.954 2.575-2.44 2.734l.146.508l.065.22c.203.701.412 1.455.476 2.226c.142 1.707-.4 3.03-1.487 3.898C11.714 14.671 10.27 15 8.75 15h-6a.75.75 0 0 1 0-1.5h1.376a4.5 4.5 0 0 1-.563-1.191a3.84 3.84 0 0 1-.05-2.063a4.65 4.65 0 0 1-2.025-.293a.75.75 0 0 1 .525-1.406c1.357.507 2.376-.006 2.698-.318l.009-.01a.747.747 0 0 1 1.06 0a.75.75 0 0 1-.012 1.074c-.912.92-.992 1.835-.768 2.586c.221.74.745 1.337 1.196 1.621H8.75c1.343 0 2.398-.296 3.074-.836c.635-.507 1.036-1.31.928-2.602c-.05-.603-.216-1.224-.422-1.93l-.064-.221c-.12-.407-.246-.84-.353-1.29a2.4 2.4 0 0 1-.507-.441a3.1 3.1 0 0 1-.633-1.248a.75.75 0 0 1 1.455-.364c.046.185.144.436.31.627c.146.168.353.305.712.305c.738 0 1.25-.615 1.25-1.25c0-1.47-.95-2.315-2.123-2.51c-1.172-.196-2.227.387-2.706 1.345c-.46.92-.27 1.774.019 3.062l.042.19l.01.05c.348.443.666.949.94 1.553a.75.75 0 1 1-1.365.62c-.553-1.217-1.32-1.94-2.3-2.768L6.7 5.527c-.814-.68-1.75-1.462-2.692-2.619a3.7 3.7 0 0 0-1.023.88c-.406.495-.663 1.036-.722 1.508c.116.122.306.21.591.239c.388.038.797-.06 1.032-.19a.75.75 0 0 1 .728 1.31c-.515.287-1.23.439-1.906.373c-.682-.067-1.473-.38-1.879-1.193L.75 5.677V5.5c0-.984.48-1.94 1.077-2.664c.46-.559 1.05-1.055 1.673-1.353z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M3.499.75a.75.75 0 0 1 1.5 0v.996C5.9 2.903 6.793 3.65 7.662 4.376l.24.202c-.036-.694.055-1.422.426-2.163C9.1.873 10.794-.045 12.622.26C14.408.558 16 1.94 16 4.25c0 1.278-.954 2.575-2.44 2.734l.146.508l.065.22c.203.701.412 1.455.476 2.226c.142 1.707-.4 3.03-1.487 3.898C11.714 14.671 10.27 15 8.75 15h-6a.75.75 0 0 1 0-1.5h1.376a4.5 4.5 0 0 1-.563-1.191a3.84 3.84 0 0 1-.05-2.063a4.65 4.65 0 0 1-2.025-.293a.75.75 0 0 1 .525-1.406c1.357.507 2.376-.006 2.698-.318l.009-.01a.747.747 0 0 1 1.06 0a.75.75 0 0 1-.012 1.074c-.912.92-.992 1.835-.768 2.586c.221.74.745 1.337 1.196 1.621H8.75c1.343 0 2.398-.296 3.074-.836c.635-.507 1.036-1.31.928-2.602c-.05-.603-.216-1.224-.422-1.93l-.064-.221c-.12-.407-.246-.84-.353-1.29a2.4 2.4 0 0 1-.507-.441a3.1 3.1 0 0 1-.633-1.248a.75.75 0 0 1 1.455-.364c.046.185.144.436.31.627c.146.168.353.305.712.305c.738 0 1.25-.615 1.25-1.25c0-1.47-.95-2.315-2.123-2.51c-1.172-.196-2.227.387-2.706 1.345c-.46.92-.27 1.774.019 3.062l.042.19l.01.05c.348.443.666.949.94 1.553a.75.75 0 1 1-1.365.62c-.553-1.217-1.32-1.94-2.3-2.768L6.7 5.527c-.814-.68-1.75-1.462-2.692-2.619a3.7 3.7 0 0 0-1.023.88c-.406.495-.663 1.036-.722 1.508c.116.122.306.21.591.239c.388.038.797-.06 1.032-.19a.75.75 0 0 1 .728 1.31c-.515.287-1.23.439-1.906.373c-.682-.067-1.473-.38-1.879-1.193L.75 5.677V5.5c0-.984.48-1.94 1.077-2.664c.46-.559 1.05-1.055 1.673-1.353z"/></svg>
</template>

CSS

.icon-squirrel-16 {
  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%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M3.499.75a.75.75%200%200%201%201.5%200v.996C5.9%202.903%206.793%203.65%207.662%204.376l.24.202c-.036-.694.055-1.422.426-2.163C9.1.873%2010.794-.045%2012.622.26C14.408.558%2016%201.94%2016%204.25c0%201.278-.954%202.575-2.44%202.734l.146.508l.065.22c.203.701.412%201.455.476%202.226c.142%201.707-.4%203.03-1.487%203.898C11.714%2014.671%2010.27%2015%208.75%2015h-6a.75.75%200%200%201%200-1.5h1.376a4.5%204.5%200%200%201-.563-1.191a3.84%203.84%200%200%201-.05-2.063a4.65%204.65%200%200%201-2.025-.293a.75.75%200%200%201%20.525-1.406c1.357.507%202.376-.006%202.698-.318l.009-.01a.747.747%200%200%201%201.06%200a.75.75%200%200%201-.012%201.074c-.912.92-.992%201.835-.768%202.586c.221.74.745%201.337%201.196%201.621H8.75c1.343%200%202.398-.296%203.074-.836c.635-.507%201.036-1.31.928-2.602c-.05-.603-.216-1.224-.422-1.93l-.064-.221c-.12-.407-.246-.84-.353-1.29a2.4%202.4%200%200%201-.507-.441a3.1%203.1%200%200%201-.633-1.248a.75.75%200%200%201%201.455-.364c.046.185.144.436.31.627c.146.168.353.305.712.305c.738%200%201.25-.615%201.25-1.25c0-1.47-.95-2.315-2.123-2.51c-1.172-.196-2.227.387-2.706%201.345c-.46.92-.27%201.774.019%203.062l.042.19l.01.05c.348.443.666.949.94%201.553a.75.75%200%201%201-1.365.62c-.553-1.217-1.32-1.94-2.3-2.768L6.7%205.527c-.814-.68-1.75-1.462-2.692-2.619a3.7%203.7%200%200%200-1.023.88c-.406.495-.663%201.036-.722%201.508c.116.122.306.21.591.239c.388.038.797-.06%201.032-.19a.75.75%200%200%201%20.728%201.31c-.515.287-1.23.439-1.906.373c-.682-.067-1.473-.38-1.879-1.193L.75%205.677V5.5c0-.984.48-1.94%201.077-2.664c.46-.559%201.05-1.055%201.673-1.353z%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%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M3.499.75a.75.75%200%200%201%201.5%200v.996C5.9%202.903%206.793%203.65%207.662%204.376l.24.202c-.036-.694.055-1.422.426-2.163C9.1.873%2010.794-.045%2012.622.26C14.408.558%2016%201.94%2016%204.25c0%201.278-.954%202.575-2.44%202.734l.146.508l.065.22c.203.701.412%201.455.476%202.226c.142%201.707-.4%203.03-1.487%203.898C11.714%2014.671%2010.27%2015%208.75%2015h-6a.75.75%200%200%201%200-1.5h1.376a4.5%204.5%200%200%201-.563-1.191a3.84%203.84%200%200%201-.05-2.063a4.65%204.65%200%200%201-2.025-.293a.75.75%200%200%201%20.525-1.406c1.357.507%202.376-.006%202.698-.318l.009-.01a.747.747%200%200%201%201.06%200a.75.75%200%200%201-.012%201.074c-.912.92-.992%201.835-.768%202.586c.221.74.745%201.337%201.196%201.621H8.75c1.343%200%202.398-.296%203.074-.836c.635-.507%201.036-1.31.928-2.602c-.05-.603-.216-1.224-.422-1.93l-.064-.221c-.12-.407-.246-.84-.353-1.29a2.4%202.4%200%200%201-.507-.441a3.1%203.1%200%200%201-.633-1.248a.75.75%200%200%201%201.455-.364c.046.185.144.436.31.627c.146.168.353.305.712.305c.738%200%201.25-.615%201.25-1.25c0-1.47-.95-2.315-2.123-2.51c-1.172-.196-2.227.387-2.706%201.345c-.46.92-.27%201.774.019%203.062l.042.19l.01.05c.348.443.666.949.94%201.553a.75.75%200%201%201-1.365.62c-.553-1.217-1.32-1.94-2.3-2.768L6.7%205.527c-.814-.68-1.75-1.462-2.692-2.619a3.7%203.7%200%200%200-1.023.88c-.406.495-.663%201.036-.722%201.508c.116.122.306.21.591.239c.388.038.797-.06%201.032-.19a.75.75%200%200%201%20.728%201.31c-.515.287-1.23.439-1.906.373c-.682-.067-1.473-.38-1.879-1.193L.75%205.677V5.5c0-.984.48-1.94%201.077-2.664c.46-.559%201.05-1.055%201.673-1.353z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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