Used in a wide range of scenarios - representing a general person, a contact, contact lists, sharing, and managing access. The Person Desktop icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 20 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
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, 20 px
ic_fluent_person_desktop_20_regular.svg
Person Desktop icon in React
npm install @fluentui/react-icons
import { PersonDesktop20Regular } from "@fluentui/react-icons";
export function Example() {
return <PersonDesktop20Regular aria-label="Person Desktop" />;
}
Person Desktop icon in SVG
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/person_desktop_20_regular.svg";
<!-- or load it from a CDN -->
<img src="https://cdn.jsdelivr.net/npm/@fluentui/[email protected]/icons/person_desktop_20_regular.svg" width="20" height="20" alt="Person Desktop">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/microsoft/fluentui-system-icons@9cf8af0f95a555918a60b8147a2f33a6a1248442/fonts/FluentSystemIcons-Regular.css">
<i class="icon-ic_fluent_person_desktop_20_regular"></i>
/* or use the code point in your own CSS */
.icon::before {
font-family: "FluentSystemIcons-Regular";
content: "\f0132";
font-size: 20px;
}