Table Move Above icon
Used in moving column and row scenarios. Contains directional variants. The Table Move 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 Move 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 { TableMoveAbove24Regular, TableMoveAbove24Filled } from "@fluentui/react-icons";
export function Example() {
return <TableMoveAbove24Regular aria-label="Table Move Above" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_table_move_above_24_regular.svg" width="24" height="24" alt="Table Move 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.5L8.01789 8.5C7.94707 8.99246 8.0856 9.51167 8.44202 9.91264C8.84748 10.3688 9.43795 10.5628 10 10.4822V14L14 14V10.4823C14.562 10.5628 15.1525 10.3688 15.5579 9.91264C15.9144 9.51167 16.0529 8.99246 15.9821 8.5L20.25 8.5ZM8.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 19.5V15.5L10 15.5V19.5L14 19.5ZM15.5 19.5H17.75C18.7165 19.5 19.5 18.7165 19.5 17.75V15.5H15.5V19.5ZM15.5 10V14H19.5V10H15.5ZM14.8105 9.24827C14.5354 9.55786 14.0613 9.58575 13.7517 9.31056L12.75 8.42014V11.25C12.75 11.6642 12.4142 12 12 12C11.5858 12 11.25 11.6642 11.25 11.25V8.42013L10.2483 9.31056C9.93868 9.58575 9.46462 9.55786 9.18944 9.24827C8.91425 8.93869 8.94213 8.46463 9.25172 8.18944L11.5017 6.18944C11.7859 5.93685 12.2141 5.93685 12.4983 6.18944L14.7483 8.18944C15.0579 8.46463 15.0857 8.93869 14.8105 9.24827Z" 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_move_above_24_regular.svg";Details
| Name | Table Move Above |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_table_move_above_24_regular.svg |
| Filled file | ic_fluent_table_move_above_24_filled.svg |
| React components | TableMoveAbove24Regular, TableMoveAbove24Filled |
| License | MIT (© Microsoft Corporation) |