Graph 6 icon

Graph 6 is a Google Material Symbol from the Business 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

graph_6_outlined_fill0_wght400.svg

Graph 6 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=graph_6" />

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

Graph 6 icon in React

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

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

Graph 6 icon in Vue

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

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

Graph 6 icon in Angular

With Angular Material and the font from the HTML tab:

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

Graph 6 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.graph_6, fill: 0, weight: 400)

Graph 6 icon in Android

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

<!-- res/drawable/graph_6.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="M12.002 22.525Q10.825 22.525 10 21.702t-.825-2Q9.175 18.525 9.999 17.7t2-.825Q13.175 16.875 14 17.699t.825 2Q14.825 20.875 14.002 21.7t-2 .825Zm.025-1.525q.552 0 .925-.373t.373-.925q0-.552-.374-.939T12.025 18.375q-.574 0-.962 .388Q10.675 19.15 10.675 19.702t.4 .925Q11.475 21 12.027 21Zm-6.675-2.325Q4.175 18.675 3.35 17.851t-.825-1.999Q2.525 14.675 3.349 13.85t2-.825Q6.525 13.025 7.35 13.849t.825 2Q8.175 17.025 7.352 17.85t-2 .825Zm13.275 0Q17.45 18.675 16.625 17.851t-.825-1.999Q15.8 14.675 16.624 13.85t2-.825Q19.8 13.025 20.625 13.849t.825 2Q21.45 17.025 20.627 17.85t-2 .825Zm-13.25-1.525q.551 0 .925-.373t.373-.925q0-.552-.374-.939T5.375 14.525q-.574 0-.962 .388Q4.025 15.3 4.025 15.852t.4 .925Q4.825 17.15 5.377 17.15Zm13.275 0q.552 0 .925-.373t.373-.925q0-.552-.374-.939T18.65 14.525q-.574 0-.962 .388Q17.3 15.3 17.3 15.852t.4 .925Q18.1 17.15 18.652 17.15ZM5.302 10.95Q4.125 10.95 3.3 10.127t-.825-2.001Q2.475 6.95 3.299 6.125t2-.825Q6.475 5.3 7.3 6.124t.825 2Q8.125 9.3 7.302 10.125t-2 .825Zm13.325 0Q17.45 10.95 16.625 10.127t-.825-2.001Q15.8 6.95 16.624 6.125t2-.825Q19.8 5.3 20.625 6.124t.825 2Q21.45 9.3 20.627 10.125t-2 .825Zm-13.3-1.525q.551 0 .925-.373t.373-.925q0-.552-.374-.939T5.325 6.8q-.574 0-.962 .388Q3.975 7.575 3.975 8.127t.4 .925Q4.775 9.425 5.327 9.425Zm13.325 0q.552 0 .925-.373t.373-.925q0-.552-.374-.939T18.65 6.8q-.574 0-.962 .388Q17.3 7.575 17.3 8.127t.4 .925Q18.1 9.425 18.652 9.425Zm-6.65-2.3Q10.825 7.125 10 6.301t-.825-2Q9.175 3.125 9.999 2.3t2-.825Q13.175 1.475 14 2.299t.825 2Q14.825 5.475 14.002 6.3t-2 .825Zm.025-1.525q.551 0 .925-.373t.373-.925q0-.552-.374-.939T12.025 2.975q-.574 0-.962 .388Q10.675 3.75 10.675 4.302t.4 .925Q11.475 5.6 12.027 5.6Z" />
</vector>

Graph 6 icon in SVG

npm install @material-symbols/svg-400

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

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

Graph 6 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

NameGraph 6
Ligaturegraph_6
Code pointU+F39B
CategoryBusiness
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/graph_6.svg, graph_6-fill.svg
FlutterSymbols.graph_6
LicenseApache License 2.0 (© Google LLC)

Keywords

businessprogressbarschartdiagramreportconnectanalysisstatisticsanalyticsperformancefinance

Related icons