people icon
people-12-regular from Fluent UI System Icons by Microsoft Corporation · 12 Regular · MIT Free for personal and commercial use.
- Name
- people-12-regular
- Set
- Fluent UI System Icons
- Style
- 12 Regular
- Viewbox
- 12×12
- License
- MIT
14 other variants in Fluent UI System Icons
The same icon in other sets
Related icons in Fluent UI System Icons
people-add-16-filledpeople-audience-20-filledpeople-call-16-filledpeople-chat-16-filledpeople-checkmark-16-filledpeople-communication-16-filledpeople-community-12-filledpeople-community-add-20-filledpeople-edit-16-filledpeople-error-16-filledpeople-eye-16-filledpeople-game-controller-20-filledpeople-interwoven-16-filledpeople-link-16-filledpeople-list-16-filledpeople-lock-16-filledpeople-money-20-filledpeople-prohibited-16-filledpeople-queue-20-filledpeople-search-20-filledpeople-settings-20-filledpeople-star-16-filledpeople-subtract-20-filledpeople-swap-16-filled
Use the people icon
SVG
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 12 12"><path fill="currentColor" d="M6.153 7.008A1.5 1.5 0 0 1 7.5 8.5c0 .771-.47 1.409-1.102 1.83c-.635.424-1.485.67-2.398.67s-1.763-.246-2.398-.67C.969 9.91.5 9.271.5 8.5A1.5 1.5 0 0 1 2 7h4zM9.998 7a1.5 1.5 0 0 1 1.5 1.5c0 .695-.431 1.211-.983 1.528c-.548.315-1.265.472-2.017.472q-.379-.001-.74-.055c.234-.276.43-.593.561-.95q.089.005.179.005c.629 0 1.162-.133 1.519-.338c.353-.203.481-.437.481-.662a.5.5 0 0 0-.5-.5h-1.55a2.5 2.5 0 0 0-.454-1zM2 8a.5.5 0 0 0-.5.5c0 .333.203.696.656.998c.45.3 1.1.502 1.844.502c.743 0 1.394-.202 1.844-.502c.453-.302.656-.665.656-.998a.5.5 0 0 0-.4-.49L6 8zm2.231-6.491a2.253 2.253 0 0 1 2.023 2.24l-.012.23A2.253 2.253 0 0 1 4.002 6l-.23-.012a2.25 2.25 0 0 1-2.01-2.01l-.012-.23a2.253 2.253 0 0 1 2.252-2.253zm4.519.988a1.75 1.75 0 1 1 0 3.5a1.75 1.75 0 0 1 0-3.5m-4.748 0a1.252 1.252 0 1 0 0 2.504a1.252 1.252 0 0 0 0-2.504m4.748 1a.75.75 0 1 0 0 1.5a.75.75 0 0 0 0-1.5"/></svg>
React
import type { SVGProps } from "react";
export function FluentPeople12Regular(props: SVGProps<SVGSVGElement>) {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 12 12"><path fill="currentColor" d="M6.153 7.008A1.5 1.5 0 0 1 7.5 8.5c0 .771-.47 1.409-1.102 1.83c-.635.424-1.485.67-2.398.67s-1.763-.246-2.398-.67C.969 9.91.5 9.271.5 8.5A1.5 1.5 0 0 1 2 7h4zM9.998 7a1.5 1.5 0 0 1 1.5 1.5c0 .695-.431 1.211-.983 1.528c-.548.315-1.265.472-2.017.472q-.379-.001-.74-.055c.234-.276.43-.593.561-.95q.089.005.179.005c.629 0 1.162-.133 1.519-.338c.353-.203.481-.437.481-.662a.5.5 0 0 0-.5-.5h-1.55a2.5 2.5 0 0 0-.454-1zM2 8a.5.5 0 0 0-.5.5c0 .333.203.696.656.998c.45.3 1.1.502 1.844.502c.743 0 1.394-.202 1.844-.502c.453-.302.656-.665.656-.998a.5.5 0 0 0-.4-.49L6 8zm2.231-6.491a2.253 2.253 0 0 1 2.023 2.24l-.012.23A2.253 2.253 0 0 1 4.002 6l-.23-.012a2.25 2.25 0 0 1-2.01-2.01l-.012-.23a2.253 2.253 0 0 1 2.252-2.253zm4.519.988a1.75 1.75 0 1 1 0 3.5a1.75 1.75 0 0 1 0-3.5m-4.748 0a1.252 1.252 0 1 0 0 2.504a1.252 1.252 0 0 0 0-2.504m4.748 1a.75.75 0 1 0 0 1.5a.75.75 0 0 0 0-1.5"/></svg>
);
}
Vue
<template> <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 12 12"><path fill="currentColor" d="M6.153 7.008A1.5 1.5 0 0 1 7.5 8.5c0 .771-.47 1.409-1.102 1.83c-.635.424-1.485.67-2.398.67s-1.763-.246-2.398-.67C.969 9.91.5 9.271.5 8.5A1.5 1.5 0 0 1 2 7h4zM9.998 7a1.5 1.5 0 0 1 1.5 1.5c0 .695-.431 1.211-.983 1.528c-.548.315-1.265.472-2.017.472q-.379-.001-.74-.055c.234-.276.43-.593.561-.95q.089.005.179.005c.629 0 1.162-.133 1.519-.338c.353-.203.481-.437.481-.662a.5.5 0 0 0-.5-.5h-1.55a2.5 2.5 0 0 0-.454-1zM2 8a.5.5 0 0 0-.5.5c0 .333.203.696.656.998c.45.3 1.1.502 1.844.502c.743 0 1.394-.202 1.844-.502c.453-.302.656-.665.656-.998a.5.5 0 0 0-.4-.49L6 8zm2.231-6.491a2.253 2.253 0 0 1 2.023 2.24l-.012.23A2.253 2.253 0 0 1 4.002 6l-.23-.012a2.25 2.25 0 0 1-2.01-2.01l-.012-.23a2.253 2.253 0 0 1 2.252-2.253zm4.519.988a1.75 1.75 0 1 1 0 3.5a1.75 1.75 0 0 1 0-3.5m-4.748 0a1.252 1.252 0 1 0 0 2.504a1.252 1.252 0 0 0 0-2.504m4.748 1a.75.75 0 1 0 0 1.5a.75.75 0 0 0 0-1.5"/></svg> </template>
CSS
.icon-people-12-regular {
width: 24px;
height: 24px;
background-color: currentColor;
-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6.153%207.008A1.5%201.5%200%200%201%207.5%208.5c0%20.771-.47%201.409-1.102%201.83c-.635.424-1.485.67-2.398.67s-1.763-.246-2.398-.67C.969%209.91.5%209.271.5%208.5A1.5%201.5%200%200%201%202%207h4zM9.998%207a1.5%201.5%200%200%201%201.5%201.5c0%20.695-.431%201.211-.983%201.528c-.548.315-1.265.472-2.017.472q-.379-.001-.74-.055c.234-.276.43-.593.561-.95q.089.005.179.005c.629%200%201.162-.133%201.519-.338c.353-.203.481-.437.481-.662a.5.5%200%200%200-.5-.5h-1.55a2.5%202.5%200%200%200-.454-1zM2%208a.5.5%200%200%200-.5.5c0%20.333.203.696.656.998c.45.3%201.1.502%201.844.502c.743%200%201.394-.202%201.844-.502c.453-.302.656-.665.656-.998a.5.5%200%200%200-.4-.49L6%208zm2.231-6.491a2.253%202.253%200%200%201%202.023%202.24l-.012.23A2.253%202.253%200%200%201%204.002%206l-.23-.012a2.25%202.25%200%200%201-2.01-2.01l-.012-.23a2.253%202.253%200%200%201%202.252-2.253zm4.519.988a1.75%201.75%200%201%201%200%203.5a1.75%201.75%200%200%201%200-3.5m-4.748%200a1.252%201.252%200%201%200%200%202.504a1.252%201.252%200%200%200%200-2.504m4.748%201a.75.75%200%201%200%200%201.5a.75.75%200%200%200%200-1.5%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6.153%207.008A1.5%201.5%200%200%201%207.5%208.5c0%20.771-.47%201.409-1.102%201.83c-.635.424-1.485.67-2.398.67s-1.763-.246-2.398-.67C.969%209.91.5%209.271.5%208.5A1.5%201.5%200%200%201%202%207h4zM9.998%207a1.5%201.5%200%200%201%201.5%201.5c0%20.695-.431%201.211-.983%201.528c-.548.315-1.265.472-2.017.472q-.379-.001-.74-.055c.234-.276.43-.593.561-.95q.089.005.179.005c.629%200%201.162-.133%201.519-.338c.353-.203.481-.437.481-.662a.5.5%200%200%200-.5-.5h-1.55a2.5%202.5%200%200%200-.454-1zM2%208a.5.5%200%200%200-.5.5c0%20.333.203.696.656.998c.45.3%201.1.502%201.844.502c.743%200%201.394-.202%201.844-.502c.453-.302.656-.665.656-.998a.5.5%200%200%200-.4-.49L6%208zm2.231-6.491a2.253%202.253%200%200%201%202.023%202.24l-.012.23A2.253%202.253%200%200%201%204.002%206l-.23-.012a2.25%202.25%200%200%201-2.01-2.01l-.012-.23a2.253%202.253%200%200%201%202.252-2.253zm4.519.988a1.75%201.75%200%201%201%200%203.5a1.75%201.75%200%200%201%200-3.5m-4.748%200a1.252%201.252%200%201%200%200%202.504a1.252%201.252%200%200%200%200-2.504m4.748%201a.75.75%200%201%200%200%201.5a.75.75%200%200%200%200-1.5%22%2F%3E%3C%2Fsvg%3E") no-repeat center / contain;
}Direct links: SVG · download · JSON · https://iconsdb.app/api/v1/icon/fluent/people-12-regular.svg?color=%231a73e8&size=48