Flow Dot icon

The Flow Dot 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.

Regular (outlined)

SVG

Filled

SVG

Use the Flow Dot 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 { FlowDot24Regular, FlowDot24Filled } from "@fluentui/react-icons";

export function Example() {
  return <FlowDot24Regular aria-label="Flow Dot" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_flow_dot_24_regular.svg" width="24" height="24" alt="Flow Dot">

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="M5.5 2.25C6.61933 2.25 7.56613 2.98584 7.88477 4H16.75L16.9688 4.00586C19.2143 4.11972 21 5.97616 21 8.25C21 10.5972 19.0972 12.5 16.75 12.5H7.25C5.73122 12.5 4.5 13.7312 4.5 15.25C4.5 16.7688 5.73122 18 7.25 18H16.1152C16.4339 16.9858 17.3807 16.25 18.5 16.25C19.8807 16.25 21 17.3693 21 18.75C21 20.1307 19.8807 21.25 18.5 21.25C17.3807 21.25 16.4339 20.5142 16.1152 19.5H7.25C4.90279 19.5 3 17.5972 3 15.25C3 12.9028 4.90279 11 7.25 11H16.75C18.2688 11 19.5 9.76878 19.5 8.25C19.5 6.82618 18.4179 5.65553 17.0312 5.51465L16.75 5.5H7.88477C7.56613 6.51416 6.61933 7.25 5.5 7.25C4.11929 7.25 3 6.13071 3 4.75C3 3.36929 4.11929 2.25 5.5 2.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/flow_dot_24_regular.svg";

Details

NameFlow Dot
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_flow_dot_24_regular.svg
Filled fileic_fluent_flow_dot_24_filled.svg
React componentsFlowDot24Regular, FlowDot24Filled
LicenseMIT (© Microsoft Corporation)

Related icons