Import Contacts icon

Import Contacts is a Google Material Symbol from the Communicate category. It's one of the 500 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.

GradeOptical size

Outlined, unfilled, weight 400

import_contacts_outlined_fill0_wght400.svg

Import Contacts 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=import_contacts" />

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

Import Contacts icon in React

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

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

Import Contacts 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 ImportContactsOutlinedIcon from "@mui/icons-material/ImportContactsOutlined";

<ImportContactsOutlinedIcon />

Import Contacts icon in Vue

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

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

Import Contacts icon in Angular

With Angular Material and the font from the HTML tab:

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

Import Contacts 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.import_contacts, fill: 0, weight: 400, grade: 0, opticalSize: 24)

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

Import Contacts icon in Android

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

<!-- res/drawable/ic_import_contacts.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="M6.2 16.5q1.339 0 2.607 .313Q10.075 17.125 11.3 17.75v-10.675q-1.125-.75-2.44-1.162Q7.544 5.5 6.2 5.5q-.95 0-1.862 .238T2.5 6.325v10.85q.775-.35 1.763-.512T6.2 16.5Zm6.6 1.25q1.25-.625 2.45-.937T17.8 16.5q.95 0 1.963 .15t1.737 .4v-10.725q-.85-.425-1.795-.625-.946-.2-1.905-.2-1.35 0-2.612 .413T12.8 7.075v10.675Zm-.75 2.25q-1.275-.95-2.775-1.462T6.2 18.025q-.913 0-1.794 .225T2.65 18.8q-.577 .275-1.114-.075Q1 18.375 1 17.725v-11.575q0-.375 .175-.687T1.7 4.975q1.05-.5 2.185-.737 1.135-.238 2.315-.238 1.575 0 3.063 .425T12.05 5.725q1.275-.875 2.738-1.3T17.8 4q1.172 0 2.298 .238Q21.225 4.475 22.275 4.975q.35 .175 .538 .488T23 6.15v11.575q0 .697-.562 1.061Q21.875 19.15 21.325 18.8q-.85-.35-1.731-.562Q18.714 18.025 17.8 18.025q-1.575 0-3.025 .525t-2.725 1.45ZM6.9 11.775Z" />
</vector>

// Jetpack Compose
Icon(painterResource(R.drawable.ic_import_contacts), contentDescription = "Import Contacts")

Import Contacts icon in SVG

npm install @material-symbols/svg-400

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

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

Import Contacts 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

NameImport Contacts
Ligatureimport_contacts
Code pointU+E0E0
CategoryCommunicate
StylesOutlined, Rounded, Sharp — each unfilled or filled
Weights100, 200, 300, 400, 500, 600, 700
Files@material-symbols/svg-400/outlined/import_contacts.svg, import_contacts-fill.svg
FlutterSymbols.import_contacts (Material Icons: Icons.import_contacts)
MUI@mui/icons-material/ImportContacts
LicenseApache License 2.0 (© Google LLC)

Keywords

communicateinformationtransferopeneducation

Related icons