People Community Add icon
Used in a wide range of scenarios - representing a general group, contacts, contact lists, sharing, and managing access. The People Community Add icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the People Community Add 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 { PeopleCommunityAdd24Regular, PeopleCommunityAdd24Filled } from "@fluentui/react-icons";
export function Example() {
return <PeopleCommunityAdd24Regular aria-label="People Community Add" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_people_community_add_24_regular.svg" width="24" height="24" alt="People Community Add"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 4.5C11.0335 4.5 10.25 5.2835 10.25 6.25C10.25 7.2165 11.0335 8 12 8C12.9665 8 13.75 7.2165 13.75 6.25C13.75 5.2835 12.9665 4.5 12 4.5ZM8.75 6.25C8.75 4.45507 10.2051 3 12 3C13.7949 3 15.25 4.45507 15.25 6.25C15.25 8.04493 13.7949 9.5 12 9.5C10.2051 9.5 8.75 8.04493 8.75 6.25ZM5 6.5C4.17157 6.5 3.5 7.17157 3.5 8C3.5 8.82843 4.17157 9.5 5 9.5C5.82843 9.5 6.5 8.82843 6.5 8C6.5 7.17157 5.82843 6.5 5 6.5ZM2 8C2 6.34315 3.34315 5 5 5C6.65685 5 8 6.34315 8 8C8 9.65685 6.65685 11 5 11C3.34315 11 2 9.65685 2 8ZM17.5 8C17.5 7.17157 18.1716 6.5 19 6.5C19.8284 6.5 20.5 7.17157 20.5 8C20.5 8.82843 19.8284 9.5 19 9.5C18.1716 9.5 17.5 8.82843 17.5 8ZM19 5C17.3431 5 16 6.34315 16 8C16 9.65685 17.3431 11 19 11C20.6569 11 22 9.65685 22 8C22 6.34315 20.6569 5 19 5ZM7.5 12.75C7.5 11.7835 8.2835 11 9.25 11H14.75C15.0876 11 15.4028 11.0956 15.6701 11.2611C14.8077 11.5137 14.0196 11.9401 13.3464 12.5H9.25C9.11193 12.5 9 12.6119 9 12.75V16.5C9 17.911 9.97414 19.0945 11.2866 19.4147C11.4605 19.9798 11.7095 20.5121 12.0218 20.9999L12 21C9.51472 21 7.5 18.9853 7.5 16.5V12.75ZM6.60996 11.9776C6.53838 12.2227 6.5 12.4819 6.5 12.7501V13.56L3.68573 14.3141C3.55236 14.3498 3.47322 14.4869 3.50895 14.6203L4.22071 17.2766C4.60374 18.7061 5.9571 19.6165 7.38228 19.489C7.69735 19.9748 8.08697 20.4077 8.53496 20.7715C8.45229 20.7989 8.36834 20.824 8.28317 20.8468C5.88257 21.49 3.41505 20.0654 2.77182 17.6648L2.06006 15.0085C1.80992 14.075 2.36394 13.1154 3.2975 12.8652L6.60996 11.9776ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM18.0006 18L18.0011 20.5035C18.0011 20.7797 17.7773 21.0035 17.5011 21.0035C17.225 21.0035 17.0011 20.7797 17.0011 20.5035L17.0006 18H14.4956C14.2197 18 13.9961 17.7762 13.9961 17.5C13.9961 17.2239 14.2197 17 14.4956 17H17.0005L17 14.4993C17 14.2231 17.2239 13.9993 17.5 13.9993C17.7761 13.9993 18 14.2231 18 14.4993L18.0005 17H20.4966C20.7725 17 20.9961 17.2239 20.9961 17.5C20.9961 17.7762 20.7725 18 20.4966 18H18.0006Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/people_community_add_24_regular.svg";Details
| Name | People Community Add |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_people_community_add_24_regular.svg |
| Filled file | ic_fluent_people_community_add_24_filled.svg |
| React components | PeopleCommunityAdd24Regular, PeopleCommunityAdd24Filled |
| License | MIT (© Microsoft Corporation) |