Quick Reference icon

Quick Reference is a Google Material Symbol from the UI actions 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.

Outlined, unfilled, weight 400

quick_reference_outlined_fill0_wght400.svg

Quick Reference 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,[email protected],100..700,0..1,-50..200&icon_names=quick_reference" />

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

Quick Reference icon in React

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

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

Quick Reference icon in Vue

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

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

Quick Reference icon in Angular

With Angular Material and the font from the HTML tab:

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

Quick Reference 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.quick_reference, fill: 0, weight: 400)

Quick Reference icon in Android

A vector drawable of the selected style, fill and weight:

<!-- res/drawable/quick_reference.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="M15.875 20.25h1v-3.75h-1v3.75Zm.5-4.725q.2 0 .35-.154t.15-.358q0-.205-.15-.359T16.375 14.5q-.225 0-.362 .15t-.138 .357q0 .207 .138 .363Q16.15 15.525 16.375 15.525ZM4.5 3.5v7.375-.1 9.725-17 4.65-4.65Zm2.475 10h4.164Q11.45 13.075 11.825 12.7t.8-.7H6.975v1.5Zm0 4.25h3.075q-.05-.35-.037-.737T10.075 16.25H6.975v1.5ZM4.5 22q-.6 0-1.05-.45t-.45-1.05v-17q0-.6 .45-1.05t1.05-.45h9.025l5.475 5.475v3.875q-.35-.15-.725-.275t-.775-.2v-2.725H12.775v-4.65H4.5v17h6.475q.275 .425 .599 .802Q11.898 21.68 12.3 22H4.5Zm15.313-8.312Q21.225 15.1 21.225 17.125t-1.412 3.438Q18.4 21.975 16.375 21.975t-3.437-1.412Q11.525 19.15 11.525 17.125t1.413-3.437Q14.35 12.275 16.375 12.275t3.438 1.413Z" />
</vector>

Quick Reference icon in SVG

npm install @material-symbols/svg-400

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

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/[email protected]/outlined/quick_reference.svg" width="24" height="24" alt="Quick Reference">

Quick Reference 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

NameQuick Reference
Ligaturequick_reference
Code pointU+E46E
CategoryUI actions
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/quick_reference.svg, quick_reference-fill.svg
FlutterSymbols.quick_reference
LicenseApache License 2.0 (© Google LLC)

Keywords

ui actionsinformationiconalertfilecontentlistdocservicepaperpagefinddetails

Related icons