Shape Exclude icon
Used in canvas shape editing scenarios. The Shape 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 Shape 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 { ShapeExclude24Regular, ShapeExclude24Filled } from "@fluentui/react-icons";
export function Example() {
return <ShapeExclude24Regular aria-label="Shape Exclude" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_shape_exclude_24_regular.svg" width="24" height="24" alt="Shape 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.45507 3.45507 2 5.25 2H13.25C13.3502 2 13.4494 2.00454 13.5474 2.01342C14.0608 2.05999 14.5397 2.22595 14.9561 2.48332C14.9936 2.50649 15.0306 2.53041 15.0671 2.55505C15.4494 2.81334 15.7738 3.15084 16.0168 3.544C16.2741 3.96049 16.4401 4.43944 16.4866 4.95286L16.4871 4.95875C16.4956 5.0547 16.5 5.15184 16.5 5.25V7.5H18.75C19.1416 7.5 19.517 7.56925 19.8646 7.69617C20.3001 7.85515 20.692 8.10462 21.0176 8.42183C21.0278 8.43179 21.038 8.44181 21.0481 8.4519C21.4017 8.80546 21.6741 9.2401 21.8352 9.72553C21.9421 10.0476 22 10.392 22 10.75V18.75C22 20.5449 20.5449 22 18.75 22H10.75C10.392 22 10.0476 21.9421 9.72554 21.8352C9.69432 21.8249 9.66332 21.8141 9.63254 21.8028C9.17088 21.6338 8.75826 21.363 8.42183 21.0176C8.10462 20.692 7.85515 20.3001 7.69617 19.8646C7.68742 19.8407 7.67895 19.8166 7.67076 19.7924C7.56004 19.4652 7.5 19.1146 7.5 18.75V16.5H5.25C5.14983 16.5 5.05072 16.4955 4.95286 16.4866C4.43944 16.4401 3.96049 16.2741 3.544 16.0168C3.54065 16.0147 3.53729 16.0126 3.53394 16.0105C3.10767 15.745 2.74738 15.3834 2.48332 14.9561C2.22595 14.5397 2.05999 14.0608 2.01342 13.5474C2.01324 13.5453 2.01305 13.5433 2.01287 13.5412C2.00435 13.4453 2 13.3482 2 13.25V5.25ZM3.5 8.06077V9.93945L9.93945 3.5H8.06077L3.5 8.06077ZM5.93945 3.5H5.25C4.2835 3.5 3.5 4.2835 3.5 5.25V5.93945L5.93945 3.5ZM12.0608 3.5L3.5 12.0608V13.25C3.5 13.4563 3.53571 13.6543 3.60129 13.8382L7.64175 9.79771C7.95665 8.76861 8.76861 7.95665 9.79771 7.64175L13.8382 3.60129C13.6543 3.53571 13.4563 3.5 13.25 3.5H12.0608ZM14.8988 4.66201L12.0608 7.5H13.9395L15 6.43945V5.25C15 5.04372 14.9643 4.84578 14.8988 4.66201ZM7.5 12.0608L4.66201 14.8988C4.84578 14.9643 5.04372 15 5.25 15H6.43945L7.5 13.9395V12.0608ZM9 18.5608V18.75C9 19.2178 9.18359 19.6428 9.48266 19.9568L12.9395 16.5H11.0608L9 18.5608ZM16.5 12.9395L19.9568 9.48266C19.6428 9.18359 19.2178 9 18.75 9H18.5608L16.5 11.0608V12.9395ZM20.5 11.0608L11.0608 20.5H12.9395L20.5 12.9395V11.0608ZM20.5 15.0608L15.0608 20.5H16.9395L20.5 16.9395V15.0608ZM20.4661 19.0947C20.3282 19.7847 19.7847 20.3282 19.0947 20.4661L20.4661 19.0947ZM9 10.75V15H13.25C14.2165 15 15 14.2165 15 13.25V9H10.75C9.7835 9 9 9.7835 9 10.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/shape_exclude_24_regular.svg";Details
| Name | Shape Exclude |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_shape_exclude_24_regular.svg |
| Filled file | ic_fluent_shape_exclude_24_filled.svg |
| React components | ShapeExclude24Regular, ShapeExclude24Filled |
| License | MIT (© Microsoft Corporation) |