Fluid icon
Used to represent intelligence components, where they can be updated across products. The Fluid 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 Fluid 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 { Fluid24Regular, Fluid24Filled } from "@fluentui/react-icons";
export function Example() {
return <Fluid24Regular aria-label="Fluid" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_fluid_24_regular.svg" width="24" height="24" alt="Fluid"> 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 5H16.745C17.9876 5 18.995 6.00736 18.995 7.25V11H17.495V7.25C17.495 6.83579 17.1592 6.5 16.745 6.5H11V5ZM6.5 11V16.745C6.5 17.1592 6.83579 17.495 7.25 17.495H11V18.995H7.25C6.00736 18.995 5 17.9876 5 16.745V11H6.5ZM2 4.25C2 3.00736 3.00736 2 4.25 2H7.75C8.99264 2 10 3.00736 10 4.25V7.75C10 8.99264 8.99264 10 7.75 10H4.25C3.00736 10 2 8.99264 2 7.75V4.25ZM4.25 3.5C3.83579 3.5 3.5 3.83579 3.5 4.25V7.75C3.5 8.16421 3.83579 8.5 4.25 8.5H7.75C8.16421 8.5 8.5 8.16421 8.5 7.75V4.25C8.5 3.83579 8.16421 3.5 7.75 3.5H4.25ZM12 14.25C12 13.0074 13.0074 12 14.25 12H19.75C20.9926 12 22 13.0074 22 14.25V19.75C22 20.9926 20.9926 22 19.75 22H14.25C13.0074 22 12 20.9926 12 19.75V14.25ZM14.25 13.5C13.8358 13.5 13.5 13.8358 13.5 14.25V19.75C13.5 20.1642 13.8358 20.5 14.25 20.5H19.75C20.1642 20.5 20.5 20.1642 20.5 19.75V14.25C20.5 13.8358 20.1642 13.5 19.75 13.5H14.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/fluid_24_regular.svg";Details
| Name | Fluid |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_fluid_24_regular.svg |
| Filled file | ic_fluent_fluid_24_filled.svg |
| React components | Fluid24Regular, Fluid24Filled |
| License | MIT (© Microsoft Corporation) |