Tag Circle icon
Used to represent information tied to specific data. The Tag Circle 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.
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, 20 px
ic_fluent_tag_circle_20_regular.svg
Tag Circle icon in React
npm install @fluentui/react-icons
import { TagCircle20Regular } from "@fluentui/react-icons";
export function Example() {
return <TagCircle20Regular aria-label="Tag Circle" />;
}Use the Tag Circle 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 { TagCircle20Regular, TagCircle20Filled } from "@fluentui/react-icons";
export function Example() {
return <TagCircle20Regular aria-label="Tag Circle" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_tag_circle_20_regular.svg" width="20" height="20" alt="Tag Circle"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M7.5 7C6.67 7 6 7.67 6 8.5v3c0 .83.67 1.5 1.5 1.5h4.06q.62 0 1.1-.39l1.78-1.44a1.5 1.5 0 0 0 0-2.34L12.66 7.4q-.48-.38-1.1-.39zM7 8.5c0-.28.22-.5.5-.5h4.06q.27 0 .47.17L13.8 9.6a.5.5 0 0 1 0 .78l-1.78 1.44q-.2.17-.47.17H7.5a.5.5 0 0 1-.5-.5zM10 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16m-7 8a7 7 0 1 1 14 0 7 7 0 0 1-14 0"/></svg>Details
| Name | Tag Circle |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_tag_circle_20_regular.svg |
| Filled file | ic_fluent_tag_circle_20_filled.svg |
| React (Regular) | TagCircle20Regular |
| React (Filled) | TagCircle20Filled |
| License | MIT (© Microsoft Corporation) |