Line Dashes icon

Used in drawing line scenarios. The Line Dashes 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 Line Dashes 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 { LineDashes24Regular, LineDashes24Filled } from "@fluentui/react-icons";

export function Example() {
  return <LineDashes24Regular aria-label="Line Dashes" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_line_dashes_24_regular.svg" width="24" height="24" alt="Line Dashes">

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="M21.785 2.2226C22.0779 2.51549 22.0779 2.99037 21.785 3.28326L20.7842 4.28407C20.4913 4.57696 20.0165 4.57696 19.7236 4.28407C19.4307 3.99118 19.4307 3.5163 19.7236 3.22341L20.7244 2.2226C21.0173 1.92971 21.4922 1.92971 21.785 2.2226ZM17.7774 6.2226C18.0703 6.51549 18.0703 6.99037 17.7774 7.28326L16.2774 8.78326C15.9845 9.07615 15.5096 9.07615 15.2167 8.78326C14.9238 8.49037 14.9238 8.01549 15.2167 7.7226L16.7167 6.2226C17.0096 5.92971 17.4845 5.92971 17.7774 6.2226ZM13.2803 10.7197C13.5732 11.0126 13.5732 11.4874 13.2803 11.7803L11.7803 13.2803C11.4874 13.5732 11.0126 13.5732 10.7197 13.2803C10.4268 12.9874 10.4268 12.5126 10.7197 12.2197L12.2197 10.7197C12.5126 10.4268 12.9874 10.4268 13.2803 10.7197ZM8.7774 16.2833C9.07029 15.9904 9.07029 15.5155 8.7774 15.2226C8.48451 14.9297 8.00963 14.9297 7.71674 15.2226L6.21674 16.7226C5.92385 17.0155 5.92385 17.4904 6.21674 17.7833C6.50963 18.0762 6.98451 18.0762 7.2774 17.7833L8.7774 16.2833ZM4.28114 20.7803C4.57403 20.4874 4.57403 20.0126 4.28114 19.7197C3.98825 19.4268 3.51337 19.4268 3.22048 19.7197L2.21967 20.7205C1.92678 21.0134 1.92678 21.4882 2.21967 21.7811C2.51256 22.074 2.98744 22.074 3.28033 21.7811L4.28114 20.7803Z" 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/line_dashes_24_regular.svg";

Details

NameLine Dashes
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_line_dashes_24_regular.svg
Filled fileic_fluent_line_dashes_24_filled.svg
React componentsLineDashes24Regular, LineDashes24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

drawcreateedit

Related icons