Pattern icon

Pattern is a Google Material Symbol from the Android 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

pattern_outlined_fill0_wght400.svg

Pattern 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=pattern" />

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

Pattern icon in React

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

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

Pattern icon in Vue

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

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

Pattern icon in Angular

With Angular Material and the font from the HTML tab:

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

Pattern 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.pattern, fill: 0, weight: 400)

Pattern icon in Android

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

<!-- res/drawable/pattern.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="M5.65 20q-.681 0-1.165-.483Q4 19.033 4 18.354t.485-1.166Q4.969 16.7 5.65 16.7q.125 0 .238 .013t.237 .062l4.3-4.3q-.15-.425-.032-.872 .117-.448 .437-.775Q11.15 10.5 11.6 10.388q.45-.113 .875 .037l4.275-4.275q-.025-.125-.037-.25t-.013-.25q0-.68 .484-1.165t1.162-.485q.679 0 1.167 .484 .487 .483 .487 1.162t-.485 1.167Q19.031 7.3 18.35 7.3q-.175 0-.525-.05L13.575 11.5q.125 .45 .025 .9t-.426 .776Q12.825 13.525 12.375 13.613q-.45 .087-.925-.038L7.425 17.6h3.1q.2-.425 .599-.662t.864-.238q.487 0 .887 .238 .4 .237 .6 .662h3.4q.232-.427 .622-.664Q17.887 16.7 18.35 16.7q.681 0 1.165 .484t.485 1.162q0 .679-.485 1.167Q19.031 20 18.35 20q-.475 0-.875-.237Q17.075 19.525 16.875 19.1H13.475q-.2 .425-.6 .663Q12.476 20 12 20q-.47 0-.872-.237Q10.725 19.525 10.525 19.1H7.125q-.2 .425-.603 .663-.402 .237-.872 .237Zm.004-6.35q-.679 0-1.166-.483-.488-.484-.488-1.163t.484-1.166q.483-.488 1.162-.488t1.167 .484q.487 .483 .487 1.162t-.483 1.167q-.484 .487-1.163 .487Zm0-6.35q-.679 0-1.166-.483-.488-.484-.488-1.163t.484-1.166q.483-.488 1.162-.488t1.167 .484q.487 .483 .487 1.162t-.483 1.167q-.484 .487-1.163 .487Zm5.184-.483q-.488-.484-.488-1.163t.484-1.166q.483-.488 1.162-.488t1.167 .484q.487 .483 .487 1.162t-.483 1.167q-.484 .487-1.163 .487t-1.166-.483ZM18.354 13.65q-.679 0-1.166-.483-.488-.484-.488-1.163t.484-1.166q.483-.488 1.162-.488t1.167 .484q.487 .483 .487 1.162t-.483 1.167q-.484 .487-1.163 .487Z" />
</vector>

Pattern icon in SVG

npm install @material-symbols/svg-400

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

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

Pattern 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

NamePattern
Ligaturepattern
Code pointU+F043
CategoryAndroid
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/pattern.svg, pattern-fill.svg
FlutterSymbols.pattern
LicenseApache License 2.0 (© Google LLC)

Keywords

androidgraphicsecuritygridelementvisualabstractarrangementstylepinstargeometrickey

Related icons