spatula spoon icon
spatula-spoon-16-filled from Fluent UI System Icons by Microsoft Corporation · 16 Filled · MIT Free for personal and commercial use.
- Name
- spatula-spoon-16-filled
- Set
- Fluent UI System Icons
- Style
- 16 Filled
- Viewbox
- 16×16
- License
- MIT
11 other variants in Fluent UI System Icons
Use the spatula spoon icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="m4.135 9.962l-1.614 1.543l-.008.008a1.75 1.75 0 1 0 2.474 2.474l.008-.008l2.201-2.303l-1.523-1.674H4.62a3 3 0 0 1-.486-.04m7.084-2.226a4 4 0 0 1 .587-.173c1.06-.23 2.19-.82 2.812-1.442a3 3 0 1 0-4.243-4.242c-.45.45-.884 1.169-1.177 1.934a3 3 0 0 1 .302 1.31v1.048zM11 3.75a.5.5 0 0 1 .5.5c0 .414.336.75.75.75a.5.5 0 0 1 0 1a1.75 1.75 0 0 1-1.75-1.75a.5.5 0 0 1 .5-.5M2.964 1.588a2 2 0 0 1 2.829 0l2.121 2.12A2 2 0 0 1 8.5 5.124v1.269a.5.5 0 0 0 .163.37l4.743 4.316l.008.008a2 2 0 1 1-2.828 2.828l-.008-.008l-4.314-4.74a.5.5 0 0 0-.37-.164H4.62a2 2 0 0 1-1.414-.586l-2.12-2.122a2 2 0 0 1 0-2.829zm.39 3.058a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 1 0 .708-.708zm.792-1.5a.5.5 0 0 0 0 .708l1.5 1.5a.5.5 0 1 0 .708-.708l-1.5-1.5a.5.5 0 0 0-.708 0"/></svg>
React
import type { SVGProps } from "react";
export function FluentSpatulaSpoon16Filled(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="m4.135 9.962l-1.614 1.543l-.008.008a1.75 1.75 0 1 0 2.474 2.474l.008-.008l2.201-2.303l-1.523-1.674H4.62a3 3 0 0 1-.486-.04m7.084-2.226a4 4 0 0 1 .587-.173c1.06-.23 2.19-.82 2.812-1.442a3 3 0 1 0-4.243-4.242c-.45.45-.884 1.169-1.177 1.934a3 3 0 0 1 .302 1.31v1.048zM11 3.75a.5.5 0 0 1 .5.5c0 .414.336.75.75.75a.5.5 0 0 1 0 1a1.75 1.75 0 0 1-1.75-1.75a.5.5 0 0 1 .5-.5M2.964 1.588a2 2 0 0 1 2.829 0l2.121 2.12A2 2 0 0 1 8.5 5.124v1.269a.5.5 0 0 0 .163.37l4.743 4.316l.008.008a2 2 0 1 1-2.828 2.828l-.008-.008l-4.314-4.74a.5.5 0 0 0-.37-.164H4.62a2 2 0 0 1-1.414-.586l-2.12-2.122a2 2 0 0 1 0-2.829zm.39 3.058a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 1 0 .708-.708zm.792-1.5a.5.5 0 0 0 0 .708l1.5 1.5a.5.5 0 1 0 .708-.708l-1.5-1.5a.5.5 0 0 0-.708 0"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="m4.135 9.962l-1.614 1.543l-.008.008a1.75 1.75 0 1 0 2.474 2.474l.008-.008l2.201-2.303l-1.523-1.674H4.62a3 3 0 0 1-.486-.04m7.084-2.226a4 4 0 0 1 .587-.173c1.06-.23 2.19-.82 2.812-1.442a3 3 0 1 0-4.243-4.242c-.45.45-.884 1.169-1.177 1.934a3 3 0 0 1 .302 1.31v1.048zM11 3.75a.5.5 0 0 1 .5.5c0 .414.336.75.75.75a.5.5 0 0 1 0 1a1.75 1.75 0 0 1-1.75-1.75a.5.5 0 0 1 .5-.5M2.964 1.588a2 2 0 0 1 2.829 0l2.121 2.12A2 2 0 0 1 8.5 5.124v1.269a.5.5 0 0 0 .163.37l4.743 4.316l.008.008a2 2 0 1 1-2.828 2.828l-.008-.008l-4.314-4.74a.5.5 0 0 0-.37-.164H4.62a2 2 0 0 1-1.414-.586l-2.12-2.122a2 2 0 0 1 0-2.829zm.39 3.058a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 1 0 .708-.708zm.792-1.5a.5.5 0 0 0 0 .708l1.5 1.5a.5.5 0 1 0 .708-.708l-1.5-1.5a.5.5 0 0 0-.708 0"/></svg> </template>
CSS
.icon-spatula-spoon-16-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%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22m4.135%209.962l-1.614%201.543l-.008.008a1.75%201.75%200%201%200%202.474%202.474l.008-.008l2.201-2.303l-1.523-1.674H4.62a3%203%200%200%201-.486-.04m7.084-2.226a4%204%200%200%201%20.587-.173c1.06-.23%202.19-.82%202.812-1.442a3%203%200%201%200-4.243-4.242c-.45.45-.884%201.169-1.177%201.934a3%203%200%200%201%20.302%201.31v1.048zM11%203.75a.5.5%200%200%201%20.5.5c0%20.414.336.75.75.75a.5.5%200%200%201%200%201a1.75%201.75%200%200%201-1.75-1.75a.5.5%200%200%201%20.5-.5M2.964%201.588a2%202%200%200%201%202.829%200l2.121%202.12A2%202%200%200%201%208.5%205.124v1.269a.5.5%200%200%200%20.163.37l4.743%204.316l.008.008a2%202%200%201%201-2.828%202.828l-.008-.008l-4.314-4.74a.5.5%200%200%200-.37-.164H4.62a2%202%200%200%201-1.414-.586l-2.12-2.122a2%202%200%200%201%200-2.829zm.39%203.058a.5.5%200%201%200-.708.708l1.5%201.5a.5.5%200%201%200%20.708-.708zm.792-1.5a.5.5%200%200%200%200%20.708l1.5%201.5a.5.5%200%201%200%20.708-.708l-1.5-1.5a.5.5%200%200%200-.708%200%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%22m4.135%209.962l-1.614%201.543l-.008.008a1.75%201.75%200%201%200%202.474%202.474l.008-.008l2.201-2.303l-1.523-1.674H4.62a3%203%200%200%201-.486-.04m7.084-2.226a4%204%200%200%201%20.587-.173c1.06-.23%202.19-.82%202.812-1.442a3%203%200%201%200-4.243-4.242c-.45.45-.884%201.169-1.177%201.934a3%203%200%200%201%20.302%201.31v1.048zM11%203.75a.5.5%200%200%201%20.5.5c0%20.414.336.75.75.75a.5.5%200%200%201%200%201a1.75%201.75%200%200%201-1.75-1.75a.5.5%200%200%201%20.5-.5M2.964%201.588a2%202%200%200%201%202.829%200l2.121%202.12A2%202%200%200%201%208.5%205.124v1.269a.5.5%200%200%200%20.163.37l4.743%204.316l.008.008a2%202%200%201%201-2.828%202.828l-.008-.008l-4.314-4.74a.5.5%200%200%200-.37-.164H4.62a2%202%200%200%201-1.414-.586l-2.12-2.122a2%202%200%200%201%200-2.829zm.39%203.058a.5.5%200%201%200-.708.708l1.5%201.5a.5.5%200%201%200%20.708-.708zm.792-1.5a.5.5%200%200%200%200%20.708l1.5%201.5a.5.5%200%201%200%20.708-.708l-1.5-1.5a.5.5%200%200%200-.708%200%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/spatula-spoon-16-filled.svg?color=%231a73e8&size=48