Table Cell Cross icon
Used to represent a cell in a table. The Table Cell Cross 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 Cell Cross 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 { TableCellCross24Regular, TableCellCross24Filled } from "@fluentui/react-icons";
export function Example() {
return <TableCellCross24Regular aria-label="Table Cell Cross" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_table_cell_cross_24_regular.svg" width="24" height="24" alt="Table Cell Cross"> 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="M13.75 2C14.9926 2 16 3.00736 16 4.25V8H19.75C20.9926 8 22 9.00736 22 10.25V13.75C22 14.9926 20.9926 16 19.75 16H16V19.75C16 20.9926 14.9926 22 13.75 22H10.25C9.00736 22 8 20.9926 8 19.75V16H4.25C3.00736 16 2 14.9926 2 13.75V10.25C2 9.00736 3.00736 8 4.25 8H8V4.25C8 3.00736 9.00736 2 10.25 2H13.75ZM9.5 19.75C9.5 20.1642 9.83579 20.5 10.25 20.5H13.75C14.1642 20.5 14.5 20.1642 14.5 19.75V16H9.5V19.75ZM4.25 9.5C3.83579 9.5 3.5 9.83579 3.5 10.25V13.75C3.5 14.1642 3.83579 14.5 4.25 14.5H8V9.5H4.25ZM9.5 14.5H14.5V9.5H9.5V14.5ZM16 14.5H19.75C20.1642 14.5 20.5 14.1642 20.5 13.75V10.25C20.5 9.83579 20.1642 9.5 19.75 9.5H16V14.5ZM10.25 3.5C9.83579 3.5 9.5 3.83579 9.5 4.25V8H14.5V4.25C14.5 3.83579 14.1642 3.5 13.75 3.5H10.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/table_cell_cross_24_regular.svg";Details
| Name | Table Cell Cross |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_table_cell_cross_24_regular.svg |
| Filled file | ic_fluent_table_cell_cross_24_filled.svg |
| React components | TableCellCross24Regular, TableCellCross24Filled |
| License | MIT (© Microsoft Corporation) |