Database icon

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

Outlined, unfilled, weight 400

database_outlined_fill0_wght400.svg

Database 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=database" />

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

Database icon in React

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

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

Database icon in Vue

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

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

Database icon in Angular

With Angular Material and the font from the HTML tab:

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

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

Database icon in Android

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

<!-- res/drawable/database.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 21q-3.775 0-6.387-1.162T3 17v-10q0-1.65 2.638-2.825T12 3q3.725 0 6.363 1.175T21 7v10q0 1.675-2.612 2.838T12 21Zm0-12.2q2.15 0 4.413-.662T19.325 6.65q-.675-.8-2.937-1.475T12 4.5q-2.2 0-4.425 .65t-2.925 1.5q.7 .875 2.9 1.513T12 8.8Zm-.025 5.35q1.05 0 2.1-.112t2.013-.338q.962-.225 1.837-.55t1.575-.725v-3.875q-.725 .4-1.6 .725t-1.85 .55q-.975 .225-2 .35t-2.075 .125q-1.05 0-2.1-.125t-2.012-.35q-.963-.225-1.825-.55T4.5 8.55v3.875q.675 .4 1.525 .725t1.813 .55q.962 .225 2.012 .338t2.125 .112Zm.025 5.35q1.2 0 2.475-.212t2.338-.563q1.062-.35 1.8-.775t.887-.875v-3.125q-.7 .4-1.575 .713T16.088 15.2q-.963 .225-2 .338T11.975 15.65q-1.075 0-2.125-.112T7.838 15.2q-.963-.225-1.813-.537T4.5 13.95v3.15q.125 .425 .85 .863t1.8 .775q1.075 .337 2.35 .55t2.5 .212Z" />
</vector>

Database icon in SVG

npm install @material-symbols/svg-400

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

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

Database 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

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

Keywords

businessnetworkinformationinternetdigitalsystemaccessbarschartcomputerbargraphdiagram

Related icons