Divider Tall icon

Used in places where horizontal dividers are needed. The Divider Tall 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 Divider Tall 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 { DividerTall24Regular, DividerTall24Filled } from "@fluentui/react-icons";

export function Example() {
  return <DividerTall24Regular aria-label="Divider Tall" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_divider_tall_24_regular.svg" width="24" height="24" alt="Divider Tall">

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.25 2.75V21.25C11.25 21.6642 11.5858 22 12 22C12.4142 22 12.75 21.6642 12.75 21.25V2.75C12.75 2.33579 12.4142 2 12 2C11.5858 2 11.25 2.33579 11.25 2.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/divider_tall_24_regular.svg";

Details

NameDivider Tall
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_divider_tall_24_regular.svg
Filled fileic_fluent_divider_tall_24_filled.svg
React componentsDividerTall24Regular, DividerTall24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

spacerlinetext

Related icons