Video People icon

Used to represent video appointments. The Video People icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 32 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.

Regular (outlined)

SVG

Filled

SVG

Every size and style

Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.

Regular, 32 px

ic_fluent_video_people_32_regular.svg

Video People icon in React

npm install @fluentui/react-icons

import { VideoPeople32Regular } from "@fluentui/react-icons";

export function Example() {
  return <VideoPeople32Regular aria-label="Video People" />;
}

Video People icon in SVG

npm install @fluentui/svg-icons

import icon from "@fluentui/svg-icons/icons/video_people_32_regular.svg";

<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@fluentui/[email protected]/icons/video_people_32_regular.svg" width="32" height="32" alt="Video People">

Video People icon in Blazor

Microsoft's Fluent UI Blazor icons package:

dotnet add package Microsoft.FluentUI.AspNetCore.Components.Icons

<FluentIcon Value="@(new Icons.Regular.Size32.VideoPeople())" />

Video People icon in Flutter

flutter pub add fluentui_system_icons

import 'package:fluentui_system_icons/fluentui_system_icons.dart';

Icon(FluentIcons.video_people_32_regular)

Video People icon in WinUI / WPF

Add FluentSystemIcons-Regular.ttf from Microsoft's repository to your app, then use the glyph:

<!-- WinUI 3 (font in Assets/Fonts) -->
<FontIcon FontFamily="ms-appx:///Assets/Fonts/FluentSystemIcons-Regular.ttf#FluentSystemIcons-Regular" Glyph="&#xF061;" FontSize="32" />

<!-- WPF (font in Fonts/, Build Action: Resource) -->
<TextBlock FontFamily="pack://application:,,,/Fonts/#FluentSystemIcons-Regular" Text="&#xF061;" FontSize="32" />

Video People icon in Icon font

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/microsoft/fluentui-system-icons@9cf8af0f95a555918a60b8147a2f33a6a1248442/fonts/FluentSystemIcons-Regular.css">

<i class="icon-ic_fluent_video_people_32_regular"></i>

/* or use the code point in your own CSS */
.icon::before {
  font-family: "FluentSystemIcons-Regular";
  content: "\f061";
  font-size: 32px;
}

Video People icon in Android

// build.gradle
implementation("com.microsoft.design:fluent-system-icons:1.1.341@aar")

<!-- layout XML -->
<ImageView android:src="@drawable/ic_fluent_video_people_32_regular" />

// Kotlin
R.drawable.ic_fluent_video_people_32_regular

Video People icon in iOS

# Podfile
pod "FluentIcons", "1.1.341"

import FluentIcons

UIImage(fluent: .videoPeople32Regular)

Video People 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='32' height='32' viewBox='0 0 32 32'>…</svg>")

Use the Video People icon in React

Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.

npm install @fluentui/react-icons

import { VideoPeople32Regular, VideoPeople32Filled } from "@fluentui/react-icons";

export function Example() {
  return <VideoPeople32Regular aria-label="Video People" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_video_people_32_regular.svg" width="32" height="32" alt="Video People">

Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:

<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M6 7.5A4.5 4.5 0 0 1 10.5 3h15A4.5 4.5 0 0 1 30 7.5v10a4.5 4.5 0 0 1-4.5 4.5h-6.3a4.4 4.4 0 0 0-3.2-2.42V18a3 3 0 0 1 3-3h5a3 3 0 0 1 3 3v1.5c.6-.46 1-1.18 1-2v-10A2.5 2.5 0 0 0 25.5 5h-15A2.5 2.5 0 0 0 8 7.5v.31q-1.1.36-2 1.07zM24 17h-5a1 1 0 0 0-1 1v2h7v-2a1 1 0 0 0-1-1m-6.59 5c.43.49.68 1.13.63 1.87q-.19 3.14-2.4 4.73C14.2 29.61 12.26 30 10 30s-4.16-.38-5.57-1.39C2.98 27.58 2.21 26 2.02 23.96 1.85 22.22 3.35 21 4.87 21H15.2q.15 0 .31.02c.73.08 1.43.43 1.91.98M4.87 23c-.58 0-.9.43-.86.78.15 1.6.71 2.58 1.58 3.2C6.51 27.64 7.93 28 10 28c2.09 0 3.54-.37 4.49-1.03.89-.63 1.45-1.62 1.56-3.23.02-.33-.29-.74-.86-.74zM25 10.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0m-2 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0M15 14a5 5 0 1 1-10 0 5 5 0 0 1 10 0m-2 0a3 3 0 1 0-6 0 3 3 0 0 0 6 0"/></svg>

Details

NameVideo People
StylesRegular (outlined), Filled
Sizes32 px
Regular (outlined) fileic_fluent_video_people_32_regular.svg
Filled fileic_fluent_video_people_32_filled.svg
React (Regular)VideoPeople32Regular
React (Filled)VideoPeople32Filled
LicenseMIT (© Microsoft Corporation)

Keywords

videomeetingselfiecameraclipmediafront facingeffectscallchatappointment

Related icons