Shirt icon
The Shirt 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_shirt_20_regular.svg
Shirt icon in React
npm install @fluentui/react-icons
import { Shirt20Regular } from "@fluentui/react-icons";
export function Example() {
return <Shirt20Regular aria-label="Shirt" />;
}Use the Shirt 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 { Shirt20Regular, Shirt20Filled } from "@fluentui/react-icons";
export function Example() {
return <Shirt20Regular aria-label="Shirt" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_shirt_20_regular.svg" width="20" height="20" alt="Shirt"> 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="M12.27 3.05a.5.5 0 0 1 .42-.01l4.62 1.85a1 1 0 0 1 .62 1.09l-.37 2.18a1 1 0 0 1-.98.84H15v7.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V9H3.42a1 1 0 0 1-.98-.84l-.37-2.18a1 1 0 0 1 .62-1.1L7.3 3.05l.1-.03a.5.5 0 0 1 .58.37C8.13 3.95 8.74 5 10 5s1.87-1.05 2.01-1.62a.5.5 0 0 1 .26-.33m.52 1.1A3 3 0 0 1 10 6a3 3 0 0 1-2.8-1.85L3.07 5.81 3.42 8H5.5c.28 0 .5.22.5.5V16h8V8.5c0-.28.22-.5.5-.5h2.08l.36-2.19z"/></svg>Details
| Name | Shirt |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_shirt_20_regular.svg |
| Filled file | ic_fluent_shirt_20_filled.svg |
| React (Regular) | Shirt20Regular |
| React (Filled) | Shirt20Filled |
| License | MIT (© Microsoft Corporation) |