Bakery Dining icon

Bakery Dining is a Google Material Symbol from the Travel category. It comes in outlined, rounded and sharp styles, filled or unfilled, at seven weights from 100 to 700. Download it as SVG or PNG, or copy code for HTML, React, Vue, Angular, Flutter and Android — it's free to use under the Apache License 2.0.

Outlined

SVG

Outlined, filled

SVG

Every style, fill and weight

Material Symbols are variable: each icon comes in three styles, with or without fill, at seven weights. Pick a combination to preview it, download it, or copy the code for your platform.

GradeOptical size

Outlined, unfilled, weight 400

bakery_dining_outlined_fill0_wght400.svg

Bakery Dining icon in HTML

Load the Material Symbols font from Google Fonts (this link loads just this icon), then use the icon's name as text.

<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=bakery_dining" />

<span class="material-symbols-outlined">bakery_dining</span>

Bakery Dining icon in React

// With the font from the HTML tab:
export function BakeryDiningIcon() {
  return (
    <span className="material-symbols-outlined">
      bakery_dining
    </span>
  );
}

// Or as an SVG component (Vite + vite-plugin-svgr) instead:
//   npm install @material-symbols/svg-400
//   import BakeryDiningIcon from "@material-symbols/svg-400/outlined/bakery_dining.svg?react";

Bakery Dining icon in MUI

The @mui/icons-material component (from the older Material Icons set, so no weight or grade):

npm install @mui/icons-material @mui/material @emotion/react @emotion/styled

import BakeryDiningOutlinedIcon from "@mui/icons-material/BakeryDiningOutlined";

<BakeryDiningOutlinedIcon />

Bakery Dining icon in Vue

<!-- With the font from the HTML tab -->
<template>
  <span class="material-symbols-outlined">bakery_dining</span>
</template>

<!-- Or as an SVG component (Vite + vite-svg-loader):
     npm install @material-symbols/svg-400
     import BakeryDiningIcon from "@material-symbols/svg-400/outlined/bakery_dining.svg?component"; -->

Bakery Dining icon in Angular

With Angular Material and the font from the HTML tab:

<mat-icon fontSet="material-symbols-outlined">bakery_dining</mat-icon>

Bakery Dining icon in Flutter

Uses the community material_symbols_icons package.

flutter pub add material_symbols_icons

import 'package:material_symbols_icons/symbols.dart';

Icon(Symbols.bakery_dining, fill: 0, weight: 400, grade: 0, opticalSize: 24)

// Or Flutter's built-in Material Icons (the older designs, no fill or weight):
Icon(Icons.bakery_dining_outlined)

Bakery Dining icon in Android

A vector drawable of the selected style, fill and weight, for XML layouts and Jetpack Compose:

<!-- res/drawable/ic_bakery_dining.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24"
    android:tint="?attr/colorControlNormal">
        <path android:fillColor="@android:color/white" android:pathData="M20.125 17.475q.675 .35 1.138-.225t.112-1.2l-1.775-3.35-1.35 3.675 1.875 1.1Zm-5.3-1.05h1.75l2.425-6.05q.15-.35 .113-.687T18.7 9.175l-2.075-.9q-.35-.175-.7 0t-.375 .525l-.725 7.625Zm-7.4 0h1.725l-.7-7.625q-.025-.375-.337-.55t-.738 .025l-1.975 .85q-.325 .125-.362 .563T5.125 10.475l2.3 5.95Zm-3.55 1.05 1.875-1.1-1.35-3.675-1.775 3.475q-.35 .7 .15 1.138t1.1 .162Zm6.775-1.05h2.675l.825-9.1q.05-.35-.187-.587T13.375 6.5H10.625q-.4 0-.6 .238t-.175 .587l.8 9.1ZM3.325 19q-.975 0-1.65-.7t-.675-1.675q0-.3 .113-.587T1.35 15.475l2.3-4.475q-.375-.975-.075-1.937t1.2-1.363l2.075-.85q.4-.15 .813-.175t.762 .2q.2-.8 .8-1.337t1.4-.538h2.75q.8 0 1.4 .5t.8 1.275q.375-.15 .775-.125t.775 .2l2.1 .85q.925 .35 1.238 1.3t-.113 1.85l2.3 4.6q.1 .275 .225 .538t.125 .537q0 1.05-.75 1.763T20.45 19q-.275 0-.512-.112T19.45 18.675l-1.525-.75H6.05l-1.45 .75q-.3 .125-.612 .225t-.663 .1Zm8.675-7Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_bakery_dining), contentDescription = "Bakery Dining")

Bakery Dining icon in SVG

npm install @material-symbols/svg-400

import icon from "@material-symbols/svg-400/outlined/bakery_dining.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/svg-400@0.47.5/outlined/bakery_dining.svg" width="24" height="24" alt="Bakery Dining">

Bakery Dining icon in Power Apps

Paste into an Image control's Image property. The Copy button copies the full formula with this icon's SVG.

"data:image/svg+xml;utf8, " & EncodeUrl("<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'>…</svg>")

Details

NameBakery Dining
Ligaturebakery_dining
Code pointU+EA53
CategoryTravel
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/bakery_dining.svg, bakery_dining-fill.svg
FlutterSymbols.bakery_dining (Material Icons: Icons.bakery_dining)
MUI@mui/icons-material/BakeryDining
LicenseApache License 2.0 (© Google LLC)

Keywords

travelmenufoodrestaurant

Related icons