Cone icon
Used to represent a cone. The Cone icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 16 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, 16 px
ic_fluent_cone_16_regular.svg
Cone icon in React
npm install @fluentui/react-icons
import { Cone16Regular } from "@fluentui/react-icons";
export function Example() {
return <Cone16Regular aria-label="Cone" />;
}Use the Cone 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 { Cone16Regular, Cone16Filled } from "@fluentui/react-icons";
export function Example() {
return <Cone16Regular aria-label="Cone" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_cone_16_regular.svg" width="16" height="16" alt="Cone"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M8 15c-2.23 0-6-.42-6-2l.01-.12.05-.2.04-.1 5.45-11.3a.52.52 0 0 1 .9 0l5.45 11.3.04.1.05.2.01.12c0 1.58-3.77 2-6 2m-4.99-1.98c.2.34 2.03.98 4.99.98 2.94 0 4.76-.63 4.99-1l-.01-.03L8 2.65z"/></svg>Details
| Name | Cone |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px |
| Regular (outlined) file | ic_fluent_cone_16_regular.svg |
| Filled file | ic_fluent_cone_16_filled.svg |
| React (Regular) | Cone16Regular |
| React (Filled) | Cone16Filled |
| License | MIT (© Microsoft Corporation) |