Step icon
Used to represent steps. The Step 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 Step 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 { Step24Regular, Step24Filled } from "@fluentui/react-icons";
export function Example() {
return <Step24Regular aria-label="Step" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_step_24_regular.svg" width="24" height="24" alt="Step"> 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="M14.5 3.25C14.5 2.55964 15.0596 2 15.75 2H20.75C21.4404 2 22 2.55964 22 3.25V18.75C22 20.5449 20.5449 22 18.75 22H3.25C2.55964 22 2 21.4404 2 20.75V15.75C2 15.0596 2.55964 14.5 3.25 14.5H8V9.25C8 8.55964 8.55964 8 9.25 8H14.5V3.25ZM16 3.5V8.25C16 8.94036 15.4404 9.5 14.75 9.5H9.5V14.75C9.5 15.4404 8.94036 16 8.25 16H3.5V20.5H18.75C19.7165 20.5 20.5 19.7165 20.5 18.75V3.5H16Z" 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/step_24_regular.svg";Details
| Name | Step |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_step_24_regular.svg |
| Filled file | ic_fluent_step_24_filled.svg |
| React components | Step24Regular, Step24Filled |
| License | MIT (© Microsoft Corporation) |