Table Insert Row icon
Used in adding cells into table scenarios. Contains column, row variants. The Table Insert Row 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 Insert Row 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 { TableInsertRow24Regular, TableInsertRow24Filled } from "@fluentui/react-icons";
export function Example() {
return <TableInsertRow24Regular aria-label="Table Insert Row" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_table_insert_row_24_regular.svg" width="24" height="24" alt="Table Insert Row"> 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 3H3.75C3.33579 3 3 3.33579 3 3.75C3 4.16421 3.33579 4.5 3.75 4.5H20.25C20.6642 4.5 21 4.16421 21 3.75C21 3.33579 20.6642 3 20.25 3ZM3 9.75C3 8.50736 4.00736 7.5 5.25 7.5H18.75C19.9926 7.5 21 8.50736 21 9.75V14.25C21 15.4926 19.9926 16.5 18.75 16.5L5.25 16.5C4.00736 16.5 3 15.4926 3 14.25V9.75ZM5.25 9C4.83579 9 4.5 9.33579 4.5 9.75V14.25C4.5 14.6642 4.83579 15 5.25 15H8.5L8.5 9H5.25ZM14 15L14 9H10L10 15H14ZM15.5 15H18.75C19.1642 15 19.5 14.6642 19.5 14.25V9.75C19.5 9.33579 19.1642 9 18.75 9H15.5L15.5 15ZM3.75 19.5H20.25C20.6642 19.5 21 19.8358 21 20.25C21 20.6642 20.6642 21 20.25 21H3.75C3.33579 21 3 20.6642 3 20.25C3 19.8358 3.33579 19.5 3.75 19.5Z" 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_insert_row_24_regular.svg";Details
| Name | Table Insert Row |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_table_insert_row_24_regular.svg |
| Filled file | ic_fluent_table_insert_row_24_filled.svg |
| React components | TableInsertRow24Regular, TableInsertRow24Filled |
| License | MIT (© Microsoft Corporation) |