Handshake icon

Handshake is a Google Material Symbol from the Social 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

handshake_outlined_fill0_wght400.svg

Handshake 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=handshake" />

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

Handshake icon in React

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

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

Handshake icon in Vue

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

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

Handshake icon in Angular

With Angular Material and the font from the HTML tab:

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

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

Handshake icon in Android

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

<!-- res/drawable/handshake.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="M11.875 20.5q.125 0 .288-.062T12.425 20.275l8.425-8.45q.325-.325 .488-.742Q21.5 10.667 21.5 10.25q0-.425-.162-.85T20.85 8.65L16.35 4.15q-.325-.325-.75-.487t-.85-.163q-.417 0-.833 .163Q13.5 3.825 13.175 4.15l-.45 .45 2.025 2.05q.325 .35 .575 .813t.25 1.012q0 .95-.737 1.675T13.15 10.875q-.625 0-1.037-.187t-.755-.534L9.525 8.325 5 12.85q-.125 .125-.175 .263-.05 .138-.05 .296 0 .316 .213 .529 .212 .212 .529 .212 .158 0 .296-.075t.237-.175l3.45-3.45 1.05 1.05-3.425 3.425q-.125 .125-.175 .275t-.05 .3q0 .3 .225 .525t.525 .225q.15 0 .288-.062t.237-.163l3.45-3.45 1.05 1.05-3.425 3.425q-.1 .1-.162 .258-.063 .159-.063 .317 0 .3 .225 .525t.525 .225q.15 0 .275-.05t.25-.175l3.45-3.45 1.05 1.05-3.45 3.45q-.125 .125-.175 .275t-.05 .275q0 .35 .2 .55t.55 .2Zm.002 1.5Q11.05 22 10.4 21.388t-.775-1.516Q8.775 19.75 8.2 19.175t-.7-1.425q-.85-.125-1.412-.712T5.4 15.625q-.925-.125-1.525-.75t-.6-1.5q0-.425 .168-.851Q3.611 12.098 3.925 11.775l5.6-5.6 2.75 2.75q.2 .2 .433 .313 .234 .112 .467 .112 .325 0 .613-.287t.287-.617q0-.146-.087-.333T13.7 7.725L10.125 4.15q-.325-.325-.75-.487t-.85-.163q-.417 0-.833 .163-.417 .162-.74 .484L3.15 7.95q-.35 .35-.487 .738t-.163 .875q-.025 .487 .188 .95T3.2 11.35l-1.075 1.075q-.5-.55-.812-1.325T1 9.525q0-.75 .288-1.437T2.1 6.875l3.775-3.775q.55-.55 1.245-.812 .695-.263 1.425-.263 .73 0 1.418 .263T11.2 3.1l.45 .45 .45-.45q.55-.55 1.245-.812 .695-.263 1.425-.263 .73 0 1.418 .263T17.425 3.1l4.475 4.475q.55 .55 .825 1.251 .275 .701 .275 1.425 0 .724-.275 1.412T21.9 12.9L13.475 21.325q-.325 .325-.738 .5t-.86 .175ZM9.425 8.35Z" />
</vector>

Handshake icon in SVG

npm install @material-symbols/svg-400

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

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

Handshake 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

NameHandshake
Ligaturehandshake
Code pointU+EBCB
CategorySocial
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/handshake.svg, handshake-fill.svg
FlutterSymbols.handshake
LicenseApache License 2.0 (© Google LLC)

Keywords

socialconnectionbusinesshandsupportglyphhandsmeetingcontractpictogramcollaborationagreementrelationship

Related icons