rolling pin icon

rolling-pin-filled from Reicon by REICON · Filled · Food · MIT Free for personal and commercial use.

Name
rolling-pin-filled
Set
Reicon
Style
Filled
Category
Food
Viewbox
24×24
License
MIT

2 other variants in Reicon

The same icon in other sets

More food icons from Reicon

Use the rolling pin icon

SVG

<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m13.157 17.013l3.855-3.856c1.454-1.454 2.182-2.181 2.182-3.085c0-.605-.327-1.131-.98-1.85a38 38 0 0 0-1.202-1.234c-.48-.48-.88-.881-1.234-1.203c-.719-.652-1.245-.979-1.85-.979c-.904 0-1.63.727-3.085 2.182l-3.856 3.855c-1.454 1.454-2.18 2.182-2.18 3.085c0 .605.326 1.131.978 1.85c.322.354.722.755 1.202 1.235s.88.88 1.235 1.202c.718.652 1.245.979 1.85.979c.903 0 1.63-.727 3.085-2.181m7.909-14.451c.041.037.09.086.188.184s.147.147.184.188a2.18 2.18 0 0 1-.262 3.17c-.044.034-.1.074-.213.155l-1.52 1.086l-.118-.132a39 39 0 0 0-1.232-1.266l-.04-.04a39 39 0 0 0-1.267-1.232l-.13-.118l1.085-1.52c.08-.113.12-.169.155-.213a2.18 2.18 0 0 1 3.17-.262M4.557 16.655l.118.131c.346.381.768.803 1.231 1.267l.041.04c.463.464.886.886 1.266 1.232l.132.118l-1.086 1.52a4 4 0 0 1-.156.213a2.18 2.18 0 0 1-3.169.262a6 6 0 0 1-.188-.184c-.098-.098-.147-.147-.184-.188a2.18 2.18 0 0 1 .262-3.17c.044-.034.1-.075.213-.155z"/></svg>

React

import type { SVGProps } from "react";

export function ReiconRollingPinFilled(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="m13.157 17.013l3.855-3.856c1.454-1.454 2.182-2.181 2.182-3.085c0-.605-.327-1.131-.98-1.85a38 38 0 0 0-1.202-1.234c-.48-.48-.88-.881-1.234-1.203c-.719-.652-1.245-.979-1.85-.979c-.904 0-1.63.727-3.085 2.182l-3.856 3.855c-1.454 1.454-2.18 2.182-2.18 3.085c0 .605.326 1.131.978 1.85c.322.354.722.755 1.202 1.235s.88.88 1.235 1.202c.718.652 1.245.979 1.85.979c.903 0 1.63-.727 3.085-2.181m7.909-14.451c.041.037.09.086.188.184s.147.147.184.188a2.18 2.18 0 0 1-.262 3.17c-.044.034-.1.074-.213.155l-1.52 1.086l-.118-.132a39 39 0 0 0-1.232-1.266l-.04-.04a39 39 0 0 0-1.267-1.232l-.13-.118l1.085-1.52c.08-.113.12-.169.155-.213a2.18 2.18 0 0 1 3.17-.262M4.557 16.655l.118.131c.346.381.768.803 1.231 1.267l.041.04c.463.464.886.886 1.266 1.232l.132.118l-1.086 1.52a4 4 0 0 1-.156.213a2.18 2.18 0 0 1-3.169.262a6 6 0 0 1-.188-.184c-.098-.098-.147-.147-.184-.188a2.18 2.18 0 0 1 .262-3.17c.044-.034.1-.075.213-.155z"/></svg>
  );
}

Vue

<template>
  <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 24 24"><path fill="currentColor" d="m13.157 17.013l3.855-3.856c1.454-1.454 2.182-2.181 2.182-3.085c0-.605-.327-1.131-.98-1.85a38 38 0 0 0-1.202-1.234c-.48-.48-.88-.881-1.234-1.203c-.719-.652-1.245-.979-1.85-.979c-.904 0-1.63.727-3.085 2.182l-3.856 3.855c-1.454 1.454-2.18 2.182-2.18 3.085c0 .605.326 1.131.978 1.85c.322.354.722.755 1.202 1.235s.88.88 1.235 1.202c.718.652 1.245.979 1.85.979c.903 0 1.63-.727 3.085-2.181m7.909-14.451c.041.037.09.086.188.184s.147.147.184.188a2.18 2.18 0 0 1-.262 3.17c-.044.034-.1.074-.213.155l-1.52 1.086l-.118-.132a39 39 0 0 0-1.232-1.266l-.04-.04a39 39 0 0 0-1.267-1.232l-.13-.118l1.085-1.52c.08-.113.12-.169.155-.213a2.18 2.18 0 0 1 3.17-.262M4.557 16.655l.118.131c.346.381.768.803 1.231 1.267l.041.04c.463.464.886.886 1.266 1.232l.132.118l-1.086 1.52a4 4 0 0 1-.156.213a2.18 2.18 0 0 1-3.169.262a6 6 0 0 1-.188-.184c-.098-.098-.147-.147-.184-.188a2.18 2.18 0 0 1 .262-3.17c.044-.034.1-.075.213-.155z"/></svg>
</template>

CSS

.icon-rolling-pin-filled {
  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%22m13.157%2017.013l3.855-3.856c1.454-1.454%202.182-2.181%202.182-3.085c0-.605-.327-1.131-.98-1.85a38%2038%200%200%200-1.202-1.234c-.48-.48-.88-.881-1.234-1.203c-.719-.652-1.245-.979-1.85-.979c-.904%200-1.63.727-3.085%202.182l-3.856%203.855c-1.454%201.454-2.18%202.182-2.18%203.085c0%20.605.326%201.131.978%201.85c.322.354.722.755%201.202%201.235s.88.88%201.235%201.202c.718.652%201.245.979%201.85.979c.903%200%201.63-.727%203.085-2.181m7.909-14.451c.041.037.09.086.188.184s.147.147.184.188a2.18%202.18%200%200%201-.262%203.17c-.044.034-.1.074-.213.155l-1.52%201.086l-.118-.132a39%2039%200%200%200-1.232-1.266l-.04-.04a39%2039%200%200%200-1.267-1.232l-.13-.118l1.085-1.52c.08-.113.12-.169.155-.213a2.18%202.18%200%200%201%203.17-.262M4.557%2016.655l.118.131c.346.381.768.803%201.231%201.267l.041.04c.463.464.886.886%201.266%201.232l.132.118l-1.086%201.52a4%204%200%200%201-.156.213a2.18%202.18%200%200%201-3.169.262a6%206%200%200%201-.188-.184c-.098-.098-.147-.147-.184-.188a2.18%202.18%200%200%201%20.262-3.17c.044-.034.1-.075.213-.155z%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%22m13.157%2017.013l3.855-3.856c1.454-1.454%202.182-2.181%202.182-3.085c0-.605-.327-1.131-.98-1.85a38%2038%200%200%200-1.202-1.234c-.48-.48-.88-.881-1.234-1.203c-.719-.652-1.245-.979-1.85-.979c-.904%200-1.63.727-3.085%202.182l-3.856%203.855c-1.454%201.454-2.18%202.182-2.18%203.085c0%20.605.326%201.131.978%201.85c.322.354.722.755%201.202%201.235s.88.88%201.235%201.202c.718.652%201.245.979%201.85.979c.903%200%201.63-.727%203.085-2.181m7.909-14.451c.041.037.09.086.188.184s.147.147.184.188a2.18%202.18%200%200%201-.262%203.17c-.044.034-.1.074-.213.155l-1.52%201.086l-.118-.132a39%2039%200%200%200-1.232-1.266l-.04-.04a39%2039%200%200%200-1.267-1.232l-.13-.118l1.085-1.52c.08-.113.12-.169.155-.213a2.18%202.18%200%200%201%203.17-.262M4.557%2016.655l.118.131c.346.381.768.803%201.231%201.267l.041.04c.463.464.886.886%201.266%201.232l.132.118l-1.086%201.52a4%204%200%200%201-.156.213a2.18%202.18%200%200%201-3.169.262a6%206%200%200%201-.188-.184c-.098-.098-.147-.147-.184-.188a2.18%202.18%200%200%201%20.262-3.17c.044-.034.1-.075.213-.155z%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}

Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/reicon/rolling-pin-filled.svg?color=%231a73e8&size=48