Table Stack Above icon
Used in adding to table scenarios. Contains directional variants. The Table Stack Above 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 Above 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 { TableStackAbove24Regular, TableStackAbove24Filled } from "@fluentui/react-icons";
export function Example() {
return <TableStackAbove24Regular aria-label="Table Stack Above" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_table_stack_above_24_regular.svg" width="24" height="24" alt="Table Stack Above"> 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="M20.25 4.5C20.6642 4.5 21 4.16421 21 3.75C21 3.33579 20.6642 3 20.25 3H3.75C3.33579 3 3 3.33579 3 3.75C3 4.16421 3.33579 4.5 3.75 4.5L20.25 4.5ZM20.25 8.5C20.6642 8.5 21 8.83579 21 9.25V17.75C21 19.5449 19.5449 21 17.75 21L6.25 21C4.45507 21 3 19.5449 3 17.75V9.25C3 8.83579 3.33579 8.5 3.75 8.5L20.25 8.5ZM14 10H10V14L14 14V10ZM8.5 10L4.5 10L4.5 14H8.5V10ZM8.5 15.5H4.5L4.5 17.75C4.5 18.7165 5.2835 19.5 6.25 19.5H8.5V15.5ZM14 15.5L10 15.5V19.5L14 19.5V15.5ZM15.5 19.5H17.75C18.7165 19.5 19.5 18.7165 19.5 17.75V15.5H15.5V19.5ZM19.5 10H15.5V14H19.5V10Z" 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_above_24_regular.svg";Details
| Name | Table Stack Above |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_table_stack_above_24_regular.svg |
| Filled file | ic_fluent_table_stack_above_24_filled.svg |
| React components | TableStackAbove24Regular, TableStackAbove24Filled |
| License | MIT (© Microsoft Corporation) |