Table Arrow Up icon
Used to represent a data table. The Table Arrow Up 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 Arrow Up 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 { TableArrowUp24Regular, TableArrowUp24Filled } from "@fluentui/react-icons";
export function Example() {
return <TableArrowUp24Regular aria-label="Table Arrow Up" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_table_arrow_up_24_regular.svg" width="24" height="24" alt="Table Arrow Up"> 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="M6.25 3C4.45507 3 3 4.45507 3 6.25V17.75C3 19.5449 4.45507 21 6.25 21H12.0218C11.7253 20.5368 11.4858 20.0335 11.3135 19.5H10V15.5H11.3135C11.4858 14.9665 11.7253 14.4632 12.0218 14H10V10H14L14 12.0218C14.4632 11.7253 14.9665 11.4858 15.5 11.3135V10H19.5V11.3135C20.0335 11.4858 20.5368 11.7253 21 12.0218V6.25C21 4.45507 19.5449 3 17.75 3H6.25ZM4.5 6.25C4.5 5.2835 5.2835 4.5 6.25 4.5H8.5V8.5H4.5V6.25ZM4.5 14V10H8.5V14H4.5ZM19.5 8.5H15.5V4.5H17.75C18.7165 4.5 19.5 5.2835 19.5 6.25V8.5ZM10 4.5H14V8.5H10V4.5ZM4.5 17.75V15.5H8.5V19.5H6.25C5.2835 19.5 4.5 18.7165 4.5 17.75ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM17.427 14.005L17.5112 14.0001C17.5317 14.0006 17.5529 14.0023 17.5739 14.0055L17.6281 14.0166L17.691 14.0378L17.7585 14.0719L17.806 14.104L20.3536 16.6464L20.4114 16.7157C20.5464 16.9106 20.5271 17.18 20.3536 17.3536C20.18 17.5271 19.9106 17.5464 19.7157 17.4114L19.6464 17.3536L17.999 15.706L18 21L17.9919 21.0899C17.9549 21.294 17.794 21.4549 17.5899 21.4919L17.5 21.5L17.4101 21.4919C17.206 21.4549 17.0451 21.294 17.0081 21.0899L17 21L16.999 15.708L15.3536 17.3536L15.2843 17.4114C15.1138 17.5295 14.8862 17.5295 14.7157 17.4114L14.6464 17.3536L14.5886 17.2843C14.4705 17.1138 14.4705 16.8862 14.5886 16.7157L14.6464 16.6464L17.1589 14.1344L17.2153 14.0888L17.2886 14.0467L17.3719 14.0166L17.427 14.005Z" 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_arrow_up_24_regular.svg";Details
| Name | Table Arrow Up |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_table_arrow_up_24_regular.svg |
| Filled file | ic_fluent_table_arrow_up_24_filled.svg |
| React components | TableArrowUp24Regular, TableArrowUp24Filled |
| License | MIT (© Microsoft Corporation) |