Align Left icon
Used to align content. The Align Left 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 Align Left 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 { AlignLeft24Regular, AlignLeft24Filled } from "@fluentui/react-icons";
export function Example() {
return <AlignLeft24Regular aria-label="Align Left" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_align_left_24_regular.svg" width="24" height="24" alt="Align Left"> 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 2.75C3 2.33579 3.33579 2 3.75 2C4.16421 2 4.5 2.33579 4.5 2.75V21.25C4.5 21.6642 4.16421 22 3.75 22C3.33579 22 3 21.6642 3 21.25V2.75ZM8.25 4C7.00736 4 6 5.00736 6 6.25V8.75C6 9.99264 7.00736 11 8.25 11L18.75 11C19.9926 11 21 9.99264 21 8.75V6.25C21 5.00736 19.9926 4 18.75 4L8.25 4ZM7.5 6.25C7.5 5.83579 7.83579 5.5 8.25 5.5L18.75 5.5C19.1642 5.5 19.5 5.83579 19.5 6.25V8.75C19.5 9.16421 19.1642 9.5 18.75 9.5L8.25 9.5C7.83579 9.5 7.5 9.16421 7.5 8.75L7.5 6.25ZM8.25 13C7.00736 13 6 14.0074 6 15.25V17.75C6 18.9926 7.00736 20 8.25 20H15.25C16.4926 20 17.5 18.9926 17.5 17.75V15.25C17.5 14.0074 16.4926 13 15.25 13L8.25 13ZM7.5 15.25C7.5 14.8358 7.83579 14.5 8.25 14.5L15.25 14.5C15.6642 14.5 16 14.8358 16 15.25V17.75C16 18.1642 15.6642 18.5 15.25 18.5H8.25C7.83579 18.5 7.5 18.1642 7.5 17.75L7.5 15.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/align_left_24_regular.svg";Details
| Name | Align Left |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_align_left_24_regular.svg |
| Filled file | ic_fluent_align_left_24_filled.svg |
| React components | AlignLeft24Regular, AlignLeft24Filled |
| License | MIT (© Microsoft Corporation) |