Menu Book icon

Menu Book is a Google Material Symbol from the Text category. It's one of the 100 most used Material Symbols. 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

menu_book_outlined_fill0_wght400.svg

Menu Book 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=menu_book" />

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

Menu Book icon in React

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

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

Menu Book 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 MenuBookOutlinedIcon from "@mui/icons-material/MenuBookOutlined";

<MenuBookOutlinedIcon />

Menu Book icon in Vue

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

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

Menu Book icon in Angular

With Angular Material and the font from the HTML tab:

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

Menu Book 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.menu_book, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Menu Book icon in Android

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

<!-- res/drawable/ic_menu_book.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="M14 9.65v-1.2q.825-.35 1.688-.525t1.812-.175q.65 0 1.275 .1t1.225 .25v1.1q-.6-.225-1.212-.337T17.5 8.75q-.95 0-1.825 .238T14 9.65Zm0 5.5v-1.225q.825-.337 1.688-.506T17.5 13.25q.65 0 1.275 .1t1.225 .25v1.1q-.6-.225-1.212-.337T17.5 14.25q-.95 0-1.825 .225t-1.675 .675Zm0-2.75v-1.2q.825-.35 1.688-.525t1.812-.175q.65 0 1.275 .1t1.225 .25v1.1q-.6-.225-1.212-.337T17.5 11.5q-.95 0-1.825 .238T14 12.4ZM6.2 16.5q1.339 0 2.607 .313Q10.075 17.125 11.3 17.75v-10.675q-1.125-.75-2.44-1.162Q7.544 5.5 6.2 5.5q-.95 0-1.862 .238T2.5 6.325v10.85q.775-.35 1.763-.512T6.2 16.5Zm6.6 1.25q1.25-.625 2.45-.937T17.8 16.5q.95 0 1.963 .15t1.737 .4v-10.725q-.85-.425-1.795-.625-.946-.2-1.905-.2-1.35 0-2.612 .413T12.8 7.075v10.675Zm-.75 2.25q-1.275-.95-2.775-1.462T6.2 18.025q-.913 0-1.794 .225T2.65 18.8q-.577 .275-1.114-.075Q1 18.375 1 17.725v-11.575q0-.375 .175-.687T1.7 4.975q1.05-.5 2.185-.737 1.135-.238 2.315-.238 1.575 0 3.063 .425T12.05 5.725q1.275-.875 2.738-1.3T17.8 4q1.172 0 2.298 .238Q21.225 4.475 22.275 4.975q.35 .175 .538 .488T23 6.15v11.575q0 .697-.562 1.061Q21.875 19.15 21.325 18.8q-.85-.35-1.731-.562Q18.714 18.025 17.8 18.025q-1.575 0-3.025 .525t-2.725 1.45ZM6.9 11.775Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_menu_book), contentDescription = "Menu Book")

Menu Book icon in SVG

npm install @material-symbols/svg-400

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

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

Menu Book 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

NameMenu Book
Ligaturemenu_book
Code pointU+EA19
CategoryText
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/menu_book.svg, menu_book-fill.svg
FlutterSymbols.menu_book (Material Icons: Icons.menu_book)
MUI@mui/icons-material/MenuBook
LicenseApache License 2.0 (© Google LLC)

Keywords

textinformationlisthelpfoodeducationrestaurant

Related icons