Bowl Chopsticks icon
The Bowl Chopsticks icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the Bowl Chopsticks icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { BowlChopsticks24Regular, BowlChopsticks24Filled } from "@fluentui/react-icons";
export function Example() {
return <BowlChopsticks24Regular aria-label="Bowl Chopsticks" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_bowl_chopsticks_24_regular.svg" width="24" height="24" alt="Bowl Chopsticks"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.39997 2.3759C6.19329 2.01694 5.73474 1.89348 5.37578 2.10016C5.01681 2.30684 4.89336 2.76538 5.10003 3.12435L9.63457 11.0001H2.75C2.33579 11.0001 2 11.3359 2 11.7501V12.0001C2 17.523 6.47715 22.0001 12 22.0001C17.5228 22.0001 22 17.523 22 12.0001V11.7501C22 11.3359 21.6642 11.0001 21.25 11.0001H15.3654L10.4 2.3759C10.1933 2.01694 9.73474 1.89348 9.37578 2.10016C9.01681 2.30684 8.89336 2.76538 9.10003 3.12435L13.6346 11.0001H11.3654L6.39997 2.3759ZM4.78755 16.5001H19.2124C17.7105 18.9023 15.0419 20.5001 12 20.5001C8.95814 20.5001 6.28948 18.9023 4.78755 16.5001ZM4.04455 15.0001C3.74853 14.2155 3.56525 13.3756 3.51446 12.5001H20.4855C20.4348 13.3756 20.2515 14.2155 19.9554 15.0001H4.04455Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/bowl_chopsticks_24_regular.svg";Details
| Name | Bowl Chopsticks |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_bowl_chopsticks_24_regular.svg |
| Filled file | ic_fluent_bowl_chopsticks_24_filled.svg |
| React components | BowlChopsticks24Regular, BowlChopsticks24Filled |
| License | MIT (© Microsoft Corporation) |