Page Control icon

Page Control 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

page_control_outlined_fill0_wght400.svg

Page Control 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=page_control" />

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

Page Control icon in React

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

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

Page Control icon in Vue

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

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

Page Control icon in Angular

With Angular Material and the font from the HTML tab:

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

Page Control 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.page_control, fill: 0, weight: 400)

Page Control icon in Android

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

<!-- res/drawable/page_control.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="M2.338 13.413Q1.75 12.825 1.75 12t.588-1.412Q2.925 10 3.75 10t1.413 .588Q5.75 11.175 5.75 12t-.587 1.413Q4.575 14 3.75 14t-1.412-.587ZM4.35 12.6q.25-.25 .25-.6t-.25-.6q-.25-.25-.6-.25t-.6 .25q-.25 .25-.25 .6t.25 .6q.25 .25 .6 .25t.6-.25Zm3.488 .813Q7.25 12.825 7.25 12t.588-1.412Q8.425 10 9.25 10t1.413 .588Q11.25 11.175 11.25 12t-.587 1.413Q10.075 14 9.25 14t-1.412-.587ZM9.85 12.6q.25-.25 .25-.6t-.25-.6q-.25-.25-.6-.25t-.6 .25q-.25 .25-.25 .6t.25 .6q.25 .25 .6 .25t.6-.25Zm3.488 .813Q12.75 12.825 12.75 12t.588-1.412Q13.925 10 14.75 10t1.413 .588Q16.75 11.175 16.75 12t-.587 1.413Q15.575 14 14.75 14t-1.412-.587ZM15.35 12.6q.25-.25 .25-.6t-.25-.6q-.25-.25-.6-.25t-.6 .25q-.25 .25-.25 .6t.25 .6q.25 .25 .6 .25t.6-.25Zm3.488 .813Q18.25 12.825 18.25 12t.588-1.412Q19.425 10 20.25 10t1.413 .588Q22.25 11.175 22.25 12t-.587 1.413Q21.075 14 20.25 14t-1.412-.587Z" />
</vector>

Page Control icon in SVG

npm install @material-symbols/svg-400

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

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

Page Control 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

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

Keywords

ui actionsmediacontentprogresslocationpositionmarkerdotssequenceguidemorepointscircles

Related icons