Vpn Lock icon

Vpn Lock is a Google Material Symbol from the Privacy 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.

GradeOptical size

Outlined, unfilled, weight 400

vpn_lock_outlined_fill0_wght400.svg

Vpn Lock 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,GRAD@20..48,100..700,0..1,-50..200&icon_names=vpn_lock" />

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

Vpn Lock icon in React

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

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

Vpn Lock icon in MUI

The @mui/icons-material component (from the older Material Icons set, so no weight or grade):

npm install @mui/icons-material @mui/material @emotion/react @emotion/styled

import VpnLockOutlinedIcon from "@mui/icons-material/VpnLockOutlined";

<VpnLockOutlinedIcon />

Vpn Lock icon in Vue

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

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

Vpn Lock icon in Angular

With Angular Material and the font from the HTML tab:

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

Vpn Lock 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.vpn_lock, fill: 0, weight: 400, grade: 0, opticalSize: 24)

// Or Flutter's built-in Material Icons (the older designs, no fill or weight):
Icon(Icons.vpn_lock_outlined)

Vpn Lock icon in Android

A vector drawable of the selected style, fill and weight, for XML layouts and Jetpack Compose:

<!-- res/drawable/ic_vpn_lock.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="M8.1 21.225q-1.825-.775-3.187-2.125T2.775 15.925q-.775-1.825-.775-3.925t.775-3.925q.775-1.825 2.113-3.175t3.125-2.125Q9.8 2 11.825 2q1.125 0 2.275 .213t1.75 .487v1.8q0 .85-.662 1.513T13.675 6.675H10.825v2q0 .475-.337 .813T9.675 9.825h-2v2.175h6.325q.5 0 .838 .338T15.175 13.175v3.175h1q.725 0 1.288 .4t.762 1.05q1.125-1.275 1.7-2.737T20.5 12.1q0-.375-.025-.912t-.075-.863h1.5q.05 .25 .075 .725t.025 .925q0 2.1-.775 3.938T19.1 19.1q-1.35 1.35-3.162 2.125T12.025 22q-2.1 0-3.925-.775Zm2.725-.6v-2.275q-.825 0-1.412-.587T8.825 16.35v-1L3.675 10.2q-.1 .575-.137 .938T3.5 11.925q0 3.35 2.075 5.8t5.25 2.9Zm7.275-11.8q-.325 0-.537-.212T17.35 8.075v-3.65q0-.325 .213-.537T18.1 3.675h.4v-1q0-.825 .563-1.425t1.362-.6q.8 0 1.363 .6t.562 1.425v1h.425q.325 0 .538 .213T23.525 4.425v3.65q0 .325-.212 .538T22.775 8.825H18.1Zm1.25-5.15h2.15v-1q0-.475-.3-.825t-.775-.35q-.475 0-.775 .35t-.3 .825v1Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_vpn_lock), contentDescription = "Vpn Lock")

Vpn Lock icon in SVG

npm install @material-symbols/svg-400

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

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@material-symbols/svg-400@0.47.5/outlined/vpn_lock.svg" width="24" height="24" alt="Vpn Lock">

Vpn Lock 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

NameVpn Lock
Ligaturevpn_lock
Code pointU+E62F
CategoryPrivacy
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/vpn_lock.svg, vpn_lock-fill.svg
FlutterSymbols.vpn_lock (Material Icons: Icons.vpn_lock)
MUI@mui/icons-material/VpnLock
LicenseApache License 2.0 (© Google LLC)

Keywords

privacynetworkconnectioninternetsecurityaccessprotectiononlinesafetyprivatesecure

Related icons