Table Simple Exclude icon
Used to represent placement of user video in meeting. The Table Simple Exclude 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 Simple Exclude 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 { TableSimpleExclude24Regular, TableSimpleExclude24Filled } from "@fluentui/react-icons";
export function Example() {
return <TableSimpleExclude24Regular aria-label="Table Simple Exclude" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_table_simple_exclude_24_regular.svg" width="24" height="24" alt="Table Simple Exclude"> 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="M2 5.25C2 3.45508 3.45507 2 5.25 2H15.25C17.0449 2 18.5 3.45507 18.5 5.25V10C18.5 10.5523 18.0523 11 17.5 11H11V17.5C11 18.0523 10.5523 18.5 10 18.5H5.25C3.45508 18.5 2 17.0449 2 15.25V5.25ZM17 5.25C17 4.2835 16.2165 3.5 15.25 3.5H11V9.5H17V5.25ZM9.5 3.5H5.25C4.2835 3.5 3.5 4.2835 3.5 5.25V9.5H9.5V3.5ZM3.5 15.25C3.5 16.2165 4.2835 17 5.25 17H9.5V11H3.5V15.25ZM12.5 14.75C12.5 13.5074 13.5074 12.5 14.75 12.5H19.75C20.9926 12.5 22 13.5074 22 14.75V19.75C22 20.9926 20.9926 22 19.75 22H14.75C13.5074 22 12.5 20.9926 12.5 19.75V14.75Z" 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_simple_exclude_24_regular.svg";Details
| Name | Table Simple Exclude |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_table_simple_exclude_24_regular.svg |
| Filled file | ic_fluent_table_simple_exclude_24_filled.svg |
| React components | TableSimpleExclude24Regular, TableSimpleExclude24Filled |
| License | MIT (© Microsoft Corporation) |