sheep from Material Design Icons by Pictogrammers · Filled · Agriculture · Apache-2.0 Free for personal and commercial use.

Name
sheep
Set
Material Design Icons
Style
Filled
Category
Agriculture
Viewbox
24×24
License
Apache 2.0
Aliases
emoji-sheep, emoticon-sheep

The same icon in other sets

More agriculture icons from Material Design Icons

Use the sheep icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M20 8.5a2.5 2.5 0 0 1-2.5 2.5c-1.08 0-2-.69-2.34-1.64c-.44.39-1.02.64-1.66.64c-.56 0-1.08-.19-1.5-.5c-.42.31-.93.5-1.5.5c-.64 0-1.22-.25-1.66-.64C8.5 10.31 7.58 11 6.5 11A2.5 2.5 0 0 1 4 8.5c0-1.24.91-2.27 2.1-2.46c-.06-.17-.1-.35-.1-.54A1.5 1.5 0 0 1 7.5 4c.2 0 .39.04.56.11C8.23 3.47 8.81 3 9.5 3c.25 0 .5.07.68.17C10.5 2.5 11.19 2 12 2s1.5.5 1.82 1.17c.18-.1.43-.17.68-.17c.69 0 1.27.47 1.44 1.11c.17-.07.36-.11.56-.11A1.5 1.5 0 0 1 18 5.5c0 .19-.04.37-.1.54c1.19.19 2.1 1.22 2.1 2.46M10 12a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m4 0a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m6.23-1.34c-.64.81-1.62 1.34-2.73 1.34c-.45 0-.88-.1-1.29-.27c-.01 2.55-.38 5.63-1.76 7.22c-.52.59-1.15.91-1.95 1.01V18h-1v1.96c-.8-.1-1.43-.41-1.95-1.01c-1.39-1.6-1.76-4.66-1.77-7.21c-.4.16-.83.26-1.28.26c-1.11 0-2.09-.53-2.73-1.34C2.88 11.55 2 12 2 12s1 2 3 2c.36 0 .64-.04.88-.09C6.22 17.73 7.58 22 12 22s5.78-4.27 6.12-8.09c.24.05.52.09.88.09c2 0 3-2 3-2s-.88-.45-1.77-1.34"/></svg>

React

import type { SVGProps } from "react";

export function MdiSheep(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" d="M20 8.5a2.5 2.5 0 0 1-2.5 2.5c-1.08 0-2-.69-2.34-1.64c-.44.39-1.02.64-1.66.64c-.56 0-1.08-.19-1.5-.5c-.42.31-.93.5-1.5.5c-.64 0-1.22-.25-1.66-.64C8.5 10.31 7.58 11 6.5 11A2.5 2.5 0 0 1 4 8.5c0-1.24.91-2.27 2.1-2.46c-.06-.17-.1-.35-.1-.54A1.5 1.5 0 0 1 7.5 4c.2 0 .39.04.56.11C8.23 3.47 8.81 3 9.5 3c.25 0 .5.07.68.17C10.5 2.5 11.19 2 12 2s1.5.5 1.82 1.17c.18-.1.43-.17.68-.17c.69 0 1.27.47 1.44 1.11c.17-.07.36-.11.56-.11A1.5 1.5 0 0 1 18 5.5c0 .19-.04.37-.1.54c1.19.19 2.1 1.22 2.1 2.46M10 12a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m4 0a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m6.23-1.34c-.64.81-1.62 1.34-2.73 1.34c-.45 0-.88-.1-1.29-.27c-.01 2.55-.38 5.63-1.76 7.22c-.52.59-1.15.91-1.95 1.01V18h-1v1.96c-.8-.1-1.43-.41-1.95-1.01c-1.39-1.6-1.76-4.66-1.77-7.21c-.4.16-.83.26-1.28.26c-1.11 0-2.09-.53-2.73-1.34C2.88 11.55 2 12 2 12s1 2 3 2c.36 0 .64-.04.88-.09C6.22 17.73 7.58 22 12 22s5.78-4.27 6.12-8.09c.24.05.52.09.88.09c2 0 3-2 3-2s-.88-.45-1.77-1.34"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="M20 8.5a2.5 2.5 0 0 1-2.5 2.5c-1.08 0-2-.69-2.34-1.64c-.44.39-1.02.64-1.66.64c-.56 0-1.08-.19-1.5-.5c-.42.31-.93.5-1.5.5c-.64 0-1.22-.25-1.66-.64C8.5 10.31 7.58 11 6.5 11A2.5 2.5 0 0 1 4 8.5c0-1.24.91-2.27 2.1-2.46c-.06-.17-.1-.35-.1-.54A1.5 1.5 0 0 1 7.5 4c.2 0 .39.04.56.11C8.23 3.47 8.81 3 9.5 3c.25 0 .5.07.68.17C10.5 2.5 11.19 2 12 2s1.5.5 1.82 1.17c.18-.1.43-.17.68-.17c.69 0 1.27.47 1.44 1.11c.17-.07.36-.11.56-.11A1.5 1.5 0 0 1 18 5.5c0 .19-.04.37-.1.54c1.19.19 2.1 1.22 2.1 2.46M10 12a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m4 0a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m6.23-1.34c-.64.81-1.62 1.34-2.73 1.34c-.45 0-.88-.1-1.29-.27c-.01 2.55-.38 5.63-1.76 7.22c-.52.59-1.15.91-1.95 1.01V18h-1v1.96c-.8-.1-1.43-.41-1.95-1.01c-1.39-1.6-1.76-4.66-1.77-7.21c-.4.16-.83.26-1.28.26c-1.11 0-2.09-.53-2.73-1.34C2.88 11.55 2 12 2 12s1 2 3 2c.36 0 .64-.04.88-.09C6.22 17.73 7.58 22 12 22s5.78-4.27 6.12-8.09c.24.05.52.09.88.09c2 0 3-2 3-2s-.88-.45-1.77-1.34"/></svg>
</template>

CSS

.icon-sheep {
  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%20d%3D%22M20%208.5a2.5%202.5%200%200%201-2.5%202.5c-1.08%200-2-.69-2.34-1.64c-.44.39-1.02.64-1.66.64c-.56%200-1.08-.19-1.5-.5c-.42.31-.93.5-1.5.5c-.64%200-1.22-.25-1.66-.64C8.5%2010.31%207.58%2011%206.5%2011A2.5%202.5%200%200%201%204%208.5c0-1.24.91-2.27%202.1-2.46c-.06-.17-.1-.35-.1-.54A1.5%201.5%200%200%201%207.5%204c.2%200%20.39.04.56.11C8.23%203.47%208.81%203%209.5%203c.25%200%20.5.07.68.17C10.5%202.5%2011.19%202%2012%202s1.5.5%201.82%201.17c.18-.1.43-.17.68-.17c.69%200%201.27.47%201.44%201.11c.17-.07.36-.11.56-.11A1.5%201.5%200%200%201%2018%205.5c0%20.19-.04.37-.1.54c1.19.19%202.1%201.22%202.1%202.46M10%2012a1%201%200%200%200-1%201a1%201%200%200%200%201%201a1%201%200%200%200%201-1a1%201%200%200%200-1-1m4%200a1%201%200%200%200-1%201a1%201%200%200%200%201%201a1%201%200%200%200%201-1a1%201%200%200%200-1-1m6.23-1.34c-.64.81-1.62%201.34-2.73%201.34c-.45%200-.88-.1-1.29-.27c-.01%202.55-.38%205.63-1.76%207.22c-.52.59-1.15.91-1.95%201.01V18h-1v1.96c-.8-.1-1.43-.41-1.95-1.01c-1.39-1.6-1.76-4.66-1.77-7.21c-.4.16-.83.26-1.28.26c-1.11%200-2.09-.53-2.73-1.34C2.88%2011.55%202%2012%202%2012s1%202%203%202c.36%200%20.64-.04.88-.09C6.22%2017.73%207.58%2022%2012%2022s5.78-4.27%206.12-8.09c.24.05.52.09.88.09c2%200%203-2%203-2s-.88-.45-1.77-1.34%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%20d%3D%22M20%208.5a2.5%202.5%200%200%201-2.5%202.5c-1.08%200-2-.69-2.34-1.64c-.44.39-1.02.64-1.66.64c-.56%200-1.08-.19-1.5-.5c-.42.31-.93.5-1.5.5c-.64%200-1.22-.25-1.66-.64C8.5%2010.31%207.58%2011%206.5%2011A2.5%202.5%200%200%201%204%208.5c0-1.24.91-2.27%202.1-2.46c-.06-.17-.1-.35-.1-.54A1.5%201.5%200%200%201%207.5%204c.2%200%20.39.04.56.11C8.23%203.47%208.81%203%209.5%203c.25%200%20.5.07.68.17C10.5%202.5%2011.19%202%2012%202s1.5.5%201.82%201.17c.18-.1.43-.17.68-.17c.69%200%201.27.47%201.44%201.11c.17-.07.36-.11.56-.11A1.5%201.5%200%200%201%2018%205.5c0%20.19-.04.37-.1.54c1.19.19%202.1%201.22%202.1%202.46M10%2012a1%201%200%200%200-1%201a1%201%200%200%200%201%201a1%201%200%200%200%201-1a1%201%200%200%200-1-1m4%200a1%201%200%200%200-1%201a1%201%200%200%200%201%201a1%201%200%200%200%201-1a1%201%200%200%200-1-1m6.23-1.34c-.64.81-1.62%201.34-2.73%201.34c-.45%200-.88-.1-1.29-.27c-.01%202.55-.38%205.63-1.76%207.22c-.52.59-1.15.91-1.95%201.01V18h-1v1.96c-.8-.1-1.43-.41-1.95-1.01c-1.39-1.6-1.76-4.66-1.77-7.21c-.4.16-.83.26-1.28.26c-1.11%200-2.09-.53-2.73-1.34C2.88%2011.55%202%2012%202%2012s1%202%203%202c.36%200%20.64-.04.88-.09C6.22%2017.73%207.58%2022%2012%2022s5.78-4.27%206.12-8.09c.24.05.52.09.88.09c2%200%203-2%203-2s-.88-.45-1.77-1.34%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

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