Steps icon
Used to represent steps in the manufacturing process. The Steps 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 Steps 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 { Steps24Regular, Steps24Filled } from "@fluentui/react-icons";
export function Example() {
return <Steps24Regular aria-label="Steps" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_steps_24_regular.svg" width="24" height="24" alt="Steps"> 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="M12 3.375C12 2.61561 12.6156 2 13.375 2H17.125C17.8844 2 18.5 2.61561 18.5 3.375V9H17V3.5H13.5V7.125C13.5 7.88439 12.8844 8.5 12.125 8.5H8.5V12.125C8.5 12.8844 7.88439 13.5 7.125 13.5H3.5V17H9V18.5H3.375C2.61561 18.5 2 17.8844 2 17.125V13.375C2 12.6156 2.61561 12 3.375 12H7V8.375C7 7.61561 7.61561 7 8.375 7H12V3.375ZM16.375 10C15.6156 10 15 10.6156 15 11.375V15H11.375C10.6156 15 10 15.6156 10 16.375V20.125C10 20.8844 10.6156 21.5 11.375 21.5H18.25C20.0449 21.5 21.5 20.0449 21.5 18.25V11.375C21.5 10.6156 20.8844 10 20.125 10H16.375ZM16.5 15.125V11.5H20V18.25C20 19.2165 19.2165 20 18.25 20H11.5V16.5H15.125C15.8844 16.5 16.5 15.8844 16.5 15.125Z" 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/steps_24_regular.svg";Details
| Name | Steps |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_steps_24_regular.svg |
| Filled file | ic_fluent_steps_24_filled.svg |
| React components | Steps24Regular, Steps24Filled |
| License | MIT (© Microsoft Corporation) |