Road Cone icon
Used to represent roadwork or construction scenarios. The Road Cone icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the Road 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 { RoadCone24Regular, RoadCone24Filled } from "@fluentui/react-icons";
export function Example() {
return <RoadCone24Regular aria-label="Road Cone" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_road_cone_24_regular.svg" width="24" height="24" alt="Road Cone"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.1841 2C10.6178 2 10.1223 2.38073 9.97635 2.92792L5.29046 20.5H2.75C2.33579 20.5 2 20.8358 2 21.25C2 21.6642 2.33579 22 2.75 22H21.25C21.6642 22 22 21.6642 22 21.25C22 20.8358 21.6642 20.5 21.25 20.5H18.7095L14.0237 2.92792C13.8777 2.38073 13.3822 2 12.8159 2H11.1841ZM6.84288 20.5L7.77621 17H13.75C14.1642 17 14.5 16.6642 14.5 16.25C14.5 15.8358 14.1642 15.5 13.75 15.5H8.17621L8.70954 13.5H12.75C13.1642 13.5 13.5 13.1642 13.5 12.75C13.5 12.3358 13.1642 12 12.75 12H9.10954L11.3762 3.5H12.6238L17.1571 20.5H6.84288Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/road_cone_24_regular.svg";Details
| Name | Road Cone |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_road_cone_24_regular.svg |
| Filled file | ic_fluent_road_cone_24_filled.svg |
| React components | RoadCone24Regular, RoadCone24Filled |
| License | MIT (© Microsoft Corporation) |