Table Cell Add icon

Used to represent adding a new cell in a table. The Table Cell Add 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.

Regular (outlined)

SVG

Filled

SVG

Use the Table Cell Add 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 { TableCellAdd24Regular, TableCellAdd24Filled } from "@fluentui/react-icons";

export function Example() {
  return <TableCellAdd24Regular aria-label="Table Cell Add" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_table_cell_add_24_regular.svg" width="24" height="24" alt="Table Cell Add">

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="M17.5 12C20.5376 12 23 14.4624 23 17.5C23 20.5376 20.5376 23 17.5 23C14.4624 23 12 20.5376 12 17.5C12 14.4624 14.4624 12 17.5 12ZM13.75 2C14.9926 2 16 3.00736 16 4.25V8H19.75C20.9926 8 22 9.00736 22 10.25V12.8115C21.5556 12.3849 21.0512 12.0208 20.5 11.7334V10.25C20.5 9.83579 20.1642 9.5 19.75 9.5H16V11.1758C15.4722 11.3005 14.9693 11.4887 14.5 11.7334V9.5H9.5V14.5H11.7334C11.4887 14.9693 11.3005 15.4722 11.1758 16H9.5V19.75C9.5 20.1642 9.83579 20.5 10.25 20.5H11.7334C12.0208 21.0512 12.3849 21.5556 12.8115 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.75ZM17.5 13.999C17.2239 13.999 17.0001 14.223 17 14.499V17H14.4951C14.2195 17.0003 13.9961 17.224 13.9961 17.5C13.9961 17.776 14.2195 17.9997 14.4951 18H17.001V20.5039C17.0012 20.7798 17.225 21.0038 17.501 21.0039C17.777 21.0039 18.0008 20.7799 18.001 20.5039V18H20.4971C20.7727 17.9997 20.9961 17.776 20.9961 17.5C20.9961 17.224 20.7727 17.0003 20.4971 17H18V14.499C17.9999 14.223 17.7761 13.999 17.5 13.999ZM4.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.25ZM10.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_add_24_regular.svg";

Details

NameTable Cell Add
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_table_cell_add_24_regular.svg
Filled fileic_fluent_table_cell_add_24_filled.svg
React componentsTableCellAdd24Regular, TableCellAdd24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

cellrowcolumninformationchartadd

Related icons