Pipeline icon
Used to represent pipeline process in coding experiences. The Pipeline 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 Pipeline 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 { Pipeline24Regular, Pipeline24Filled } from "@fluentui/react-icons";
export function Example() {
return <Pipeline24Regular aria-label="Pipeline" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_pipeline_24_regular.svg" width="24" height="24" alt="Pipeline"> 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="M2 6.25C2 5.00736 3.00736 4 4.25 4C5.40814 4 6.36191 4.87501 6.48627 6L17.5137 6C17.6381 4.87501 18.5919 4 19.75 4C20.9926 4 22 5.00736 22 6.25V16.75C22 17.9926 20.9926 19 19.75 19C18.5919 19 17.6381 18.125 17.5137 17L6.48627 17C6.36191 18.125 5.40814 19 4.25 19C3.00736 19 2 17.9926 2 16.75V6.25ZM5 6.25C5 5.83579 4.66421 5.5 4.25 5.5C3.83579 5.5 3.5 5.83579 3.5 6.25V16.75C3.5 17.1642 3.83579 17.5 4.25 17.5C4.66421 17.5 5 17.1642 5 16.75V6.25ZM6.5 15.5L17.5 15.5V7.5L6.5 7.5V15.5ZM20.5 6.25C20.5 5.83579 20.1642 5.5 19.75 5.5C19.3358 5.5 19 5.83579 19 6.25V16.75C19 17.1642 19.3358 17.5 19.75 17.5C20.1642 17.5 20.5 17.1642 20.5 16.75V6.25Z" 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/pipeline_24_regular.svg";Details
| Name | Pipeline |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_pipeline_24_regular.svg |
| Filled file | ic_fluent_pipeline_24_filled.svg |
| React components | Pipeline24Regular, Pipeline24Filled |
| License | MIT (© Microsoft Corporation) |