Layout Infographic icon

Used to represent UI layouts. The Layout Infographic 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 Layout Infographic 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 { LayoutInfographic24Regular, LayoutInfographic24Filled } from "@fluentui/react-icons";

export function Example() {
  return <LayoutInfographic24Regular aria-label="Layout Infographic" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_layout_infographic_24_regular.svg" width="24" height="24" alt="Layout Infographic">

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="M17.75 3C19.5449 3 21 4.45507 21 6.25V17.75C21 19.5449 19.5449 21 17.75 21H6.25C4.45507 21 3 19.5449 3 17.75V6.25C3 4.45507 4.45507 3 6.25 3H17.75ZM6.25 4.5C5.2835 4.5 4.5 5.2835 4.5 6.25V17.75C4.5 18.7165 5.2835 19.5 6.25 19.5H17.75C18.7165 19.5 19.5 18.7165 19.5 17.75V6.25C19.5 5.2835 18.7165 4.5 17.75 4.5H6.25ZM8.5 11C10.1569 11 11.5 12.3431 11.5 14C11.5 15.6569 10.1569 17 8.5 17C6.84315 17 5.5 15.6569 5.5 14C5.5 12.3431 6.84315 11 8.5 11ZM13.75 11.5C14.1642 11.5 14.5 11.8358 14.5 12.25V16.25C14.5 16.6642 14.1642 17 13.75 17C13.3358 17 13 16.6642 13 16.25V12.25C13 11.8358 13.3358 11.5 13.75 11.5ZM16.75 10C17.1642 10 17.5 10.3358 17.5 10.75V16.25C17.5 16.6642 17.1642 17 16.75 17C16.3358 17 16 16.6642 16 16.25V10.75C16 10.3358 16.3358 10 16.75 10ZM8.5 12.5C7.67157 12.5 7 13.1716 7 14C7 14.8284 7.67157 15.5 8.5 15.5C9.32843 15.5 10 14.8284 10 14C10 13.1716 9.32843 12.5 8.5 12.5ZM17.25 7C17.6642 7 18 7.33579 18 7.75C18 8.16421 17.6642 8.5 17.25 8.5H6.75C6.33579 8.5 6 8.16421 6 7.75C6 7.33579 6.33579 7 6.75 7H17.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/layout_infographic_24_regular.svg";

Details

NameLayout Infographic
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_layout_infographic_24_regular.svg
Filled fileic_fluent_layout_infographic_24_filled.svg
React componentsLayoutInfographic24Regular, LayoutInfographic24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

uilayoutstructurecustomize

Related icons