Line Horizontal 1 Dashes icon
Used to represent line drawing styles. The Line Horizontal 1 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.
Use the Line Horizontal 1 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 { LineHorizontal1Dashes24Regular, LineHorizontal1Dashes24Filled } from "@fluentui/react-icons";
export function Example() {
return <LineHorizontal1Dashes24Regular aria-label="Line Horizontal 1 Dashes" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_line_horizontal_1_dashes_24_regular.svg" width="24" height="24" alt="Line Horizontal 1 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="M2 11.75C2 11.3358 2.33579 11 2.75 11H6.25C6.66421 11 7 11.3358 7 11.75C7 12.1642 6.66421 12.5 6.25 12.5H2.75C2.33579 12.5 2 12.1642 2 11.75ZM9.5 11.75C9.5 11.3358 9.83579 11 10.25 11H13.75C14.1642 11 14.5 11.3358 14.5 11.75C14.5 12.1642 14.1642 12.5 13.75 12.5H10.25C9.83579 12.5 9.5 12.1642 9.5 11.75ZM17 11.75C17 11.3358 17.3358 11 17.75 11H21.25C21.6642 11 22 11.3358 22 11.75C22 12.1642 21.6642 12.5 21.25 12.5H17.75C17.3358 12.5 17 12.1642 17 11.75Z" 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_horizontal_1_dashes_24_regular.svg";Details
| Name | Line Horizontal 1 Dashes |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_line_horizontal_1_dashes_24_regular.svg |
| Filled file | ic_fluent_line_horizontal_1_dashes_24_filled.svg |
| React components | LineHorizontal1Dashes24Regular, LineHorizontal1Dashes24Filled |
| License | MIT (© Microsoft Corporation) |