Pentagon icon
Used in canvas creation scenarios. The Pentagon icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles in 3 sizes from 20 to 48 px. 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_pentagon_20_regular.svg
Pentagon icon in React
npm install @fluentui/react-icons
import { Pentagon20Regular } from "@fluentui/react-icons";
export function Example() {
return <Pentagon20Regular aria-label="Pentagon" />;
}Use the Pentagon 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 { Pentagon20Regular, Pentagon20Filled } from "@fluentui/react-icons";
export function Example() {
return <Pentagon20Regular aria-label="Pentagon" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_pentagon_20_regular.svg" width="20" height="20" alt="Pentagon"> 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="M8.4 1.65a2.5 2.5 0 0 1 3.36 0l5.43 4.99c.73.67 1 1.7.68 2.64l-2.03 6.02a2.5 2.5 0 0 1-2.36 1.7H6.65c-1.05 0-2-.66-2.35-1.65L2.15 9.4a2.5 2.5 0 0 1 .67-2.7zm2.69.74a1.5 1.5 0 0 0-2.03 0L3.5 7.44a1.5 1.5 0 0 0-.4 1.62l2.15 5.95c.21.6.78.99 1.4.99h6.84a1.5 1.5 0 0 0 1.42-1.02l2.02-6.02a1.5 1.5 0 0 0-.4-1.58z"/></svg>Details
| Name | Pentagon |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px, 32 px, 48 px |
| Regular (outlined) file | ic_fluent_pentagon_20_regular.svg |
| Filled file | ic_fluent_pentagon_20_filled.svg |
| React (Regular) | Pentagon20Regular, Pentagon32Regular, Pentagon48Regular |
| React (Filled) | Pentagon20Filled, Pentagon32Filled, Pentagon48Filled |
| License | MIT (© Microsoft Corporation) |