Line Thickness icon

Used in inking, brush, or general drawing size scenarios. The Line Thickness 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 Thickness 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 { LineThickness24Regular, LineThickness24Filled } from "@fluentui/react-icons";

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

Use it in HTML

Reference the SVG file directly:

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

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.75 3.5C2.33579 3.5 2 3.83579 2 4.25C2 4.66421 2.33579 5 2.75 5H21.25C21.6642 5 22 4.66421 22 4.25C22 3.83579 21.6642 3.5 21.25 3.5H2.75ZM2 10.75C2 10.0596 2.55964 9.5 3.25 9.5H20.75C21.4404 9.5 22 10.0596 22 10.75C22 11.4404 21.4404 12 20.75 12H3.25C2.55964 12 2 11.4404 2 10.75ZM2 18.25C2 17.2835 2.7835 16.5 3.75 16.5H20.25C21.2165 16.5 22 17.2835 22 18.25C22 19.2165 21.2165 20 20.25 20H3.75C2.7835 20 2 19.2165 2 18.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/line_thickness_24_regular.svg";

Details

NameLine Thickness
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_line_thickness_24_regular.svg
Filled fileic_fluent_line_thickness_24_filled.svg
React componentsLineThickness24Regular, LineThickness24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

inkdrawbrushthicknessstylesizechange

Related icons