Table Stack Left icon
Used in adding to table scenarios. Contains directional variants. The Table Stack 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 Table Stack 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 { TableStackLeft24Regular, TableStackLeft24Filled } from "@fluentui/react-icons";
export function Example() {
return <TableStackLeft24Regular aria-label="Table Stack Left" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_table_stack_left_24_regular.svg" width="24" height="24" alt="Table Stack 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="M4.5 3.75C4.5 3.33579 4.16421 3 3.75 3C3.33579 3 3 3.33579 3 3.75V20.25C3 20.6642 3.33579 21 3.75 21C4.16421 21 4.5 20.6642 4.5 20.25L4.5 3.75ZM8.5 3.75C8.5 3.33579 8.83579 3 9.25 3H17.75C19.5449 3 21 4.45507 21 6.25V17.75C21 19.5449 19.5449 21 17.75 21H9.25C8.83579 21 8.5 20.6642 8.5 20.25V3.75ZM10 10V14H14V10H10ZM10 15.5V19.5H14V15.5H10ZM15.5 15.5V19.5H17.75C18.7165 19.5 19.5 18.7165 19.5 17.75V15.5H15.5ZM15.5 10V14H19.5V10H15.5ZM19.5 8.5V6.25C19.5 5.2835 18.7165 4.5 17.75 4.5H15.5V8.5H19.5ZM10 4.5V8.5H14V4.5H10Z" 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/table_stack_left_24_regular.svg";Details
| Name | Table Stack Left |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_table_stack_left_24_regular.svg |
| Filled file | ic_fluent_table_stack_left_24_filled.svg |
| React components | TableStackLeft24Regular, TableStackLeft24Filled |
| License | MIT (© Microsoft Corporation) |