List Bar icon
Used to represent stacked list view. The List Bar 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 List Bar 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 { ListBar24Regular, ListBar24Filled } from "@fluentui/react-icons";
export function Example() {
return <ListBar24Regular aria-label="List Bar" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_list_bar_24_regular.svg" width="24" height="24" alt="List Bar"> 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="M3 5.75C3 4.23122 4.23122 3 5.75 3H18.25C19.7688 3 21 4.23122 21 5.75V7.25C21 8.03802 20.6686 8.74862 20.1375 9.25C20.6686 9.75139 21 10.462 21 11.25V12.75C21 13.538 20.6686 14.2486 20.1375 14.75C20.6686 15.2514 21 15.962 21 16.75V18.25C21 19.7688 19.7688 21 18.25 21H5.75C4.23122 21 3 19.7688 3 18.25V16.75C3 15.962 3.33145 15.2514 3.86253 14.75C3.33145 14.2486 3 13.538 3 12.75V11.25C3 10.462 3.33144 9.75138 3.86253 9.25C3.33144 8.74862 3 8.03801 3 7.25V5.75ZM19.5 7.25V5.75C19.5 5.05964 18.9404 4.5 18.25 4.5H9.5V8.5H18.25C18.9404 8.5 19.5 7.94036 19.5 7.25ZM8 4.5H5.75C5.05964 4.5 4.5 5.05964 4.5 5.75V7.25C4.5 7.94036 5.05964 8.5 5.75 8.5H8V4.5ZM8 10H5.75C5.05964 10 4.5 10.5596 4.5 11.25V12.75C4.5 13.4404 5.05964 14 5.75 14H8V10ZM8 15.5H5.75C5.05964 15.5 4.5 16.0596 4.5 16.75V18.25C4.5 18.9404 5.05964 19.5 5.75 19.5H8V15.5ZM9.5 19.5H18.25C18.9404 19.5 19.5 18.9404 19.5 18.25V16.75C19.5 16.0596 18.9404 15.5 18.25 15.5H9.5V19.5ZM9.5 14H18.25C18.9404 14 19.5 13.4404 19.5 12.75V11.25C19.5 10.5596 18.9404 10 18.25 10H9.5V14Z" 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/list_bar_24_regular.svg";Details
| Name | List Bar |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_list_bar_24_regular.svg |
| Filled file | ic_fluent_list_bar_24_filled.svg |
| React components | ListBar24Regular, ListBar24Filled |
| License | MIT (© Microsoft Corporation) |