team.svg


Overview

team.svg is an SVG (Scalable Vector Graphics) file that defines a small icon pictorially representing a "team" or group of people. It is designed to be used as a visual asset within a user interface, typically to symbolize teams, groups, user management, or collaboration features.

This SVG icon is compact (24x24 pixels) and uses vector path data to draw a stylized representation of multiple human figures. The icon is monochrome with a stroke color of #667085, making it suitable for integration into various UI themes that support neutral or muted colors.


File Content Explanation

The entire content of team.svg is a self-contained SVG markup snippet:

<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path
        d="M22 21V19C22 17.1362 20.7252 15.5701 19 15.126M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M17 21C17 19.1362 17 18.2044 16.6955 17.4693C16.2895 16.4892 15.5108 15.7105 14.5307 15.3045C13.7956 15 12.8638 15 11 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z"
        stroke="#667085" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
</svg>

Main Elements


Usage and Integration

Parameters

How to Use

Inline embedding in HTML

<div class="icon-team">
  <!-- Paste content of team.svg here -->
  <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M22 21V19C22 17.1362 20.7252 15.5701 19 15.126M15.5 3.29076C16.9659 3.88415 18 5.32131 18 7C18 8.67869 16.9659 10.1159 15.5 10.7092M17 21C17 19.1362 17 18.2044 16.6955 17.4693C16.2895 16.4892 15.5108 15.7105 14.5307 15.3045C13.7956 15 12.8638 15 11 15H8C6.13623 15 5.20435 15 4.46927 15.3045C3.48915 15.7105 2.71046 16.4892 2.30448 17.4693C2 18.2044 2 19.1362 2 21M13.5 7C13.5 9.20914 11.7091 11 9.5 11C7.29086 11 5.5 9.20914 5.5 7C5.5 4.79086 7.29086 3 9.5 3C11.7091 3 13.5 4.79086 13.5 7Z"
          stroke="#667085" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" />
  </svg>
</div>

Using as an <img> source

<img src="team.svg" alt="Team icon" width="24" height="24" />

Note: When used as an <img>, color customization requires editing the SVG file or applying CSS filters.


Implementation Details and Design Notes


Interaction with Other System Components


Visual Diagram

Since this is a utility SVG file without classes or functions, the most relevant diagram is a flowchart showing the conceptual elements represented by the path commands in the SVG and their relationships as parts of the icon.

flowchart LR
    A[Left Person Figure] --> C[Center Person Figure]
    B[Right Person Figure] --> C
    C --> D[Group/Team Icon]

    style A stroke:#667085,stroke-width:2px
    style B stroke:#667085,stroke-width:2px
    style C stroke:#667085,stroke-width:2px
    style D stroke:#667085,stroke-width:3px,stroke-dasharray: 5 5

Summary

team.svg is a compact, vector-based icon representing a team or group of people using smooth, outlined shapes. It is designed for UI integration where a symbolic representation of collaboration or user groups is required. Its scalable nature and minimal styling make it versatile for various digital products.


End of Documentation