Link Dismiss icon
Used in generic linking to other content scenarios. The Link Dismiss 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 Link Dismiss 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 { LinkDismiss24Regular, LinkDismiss24Filled } from "@fluentui/react-icons";
export function Example() {
return <LinkDismiss24Regular aria-label="Link Dismiss" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_link_dismiss_24_regular.svg" width="24" height="24" alt="Link Dismiss"> 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="M9.25 5C9.66421 5 10 5.33579 10 5.75C10 6.12656 9.72249 6.4383 9.36083 6.49187L9.25 6.5H7C5.067 6.5 3.5 8.067 3.5 10C3.5 11.864 4.95707 13.3876 6.79435 13.4941L7 13.5H9.25C9.66421 13.5 10 13.8358 10 14.25C10 14.6266 9.72249 14.9383 9.36083 14.9919L9.25 15H7C4.23858 15 2 12.7614 2 10C2 7.32226 4.10496 5.13615 6.75045 5.00612L7 5H9.25ZM17 5C19.7614 5 22 7.23858 22 10C22 10.8381 21.7938 11.628 21.4294 12.3217C21.0316 12.0194 20.5978 11.7618 20.1357 11.5566C20.3689 11.0877 20.5 10.5592 20.5 10C20.5 8.13604 19.0429 6.6124 17.2057 6.50594L17 6.5H14.75C14.3358 6.5 14 6.16421 14 5.75C14 5.37344 14.2775 5.0617 14.6392 5.00813L14.75 5H17ZM7 9.25H17C17.4142 9.25 17.75 9.58579 17.75 10C17.75 10.3797 17.4678 10.6935 17.1018 10.7432L17 10.75H7C6.58579 10.75 6.25 10.4142 6.25 10C6.25 9.6203 6.53215 9.30651 6.89823 9.25685L7 9.25ZM23 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 12C20.5376 12 23 14.4624 23 17.5ZM15.8536 15.1464C15.6583 14.9512 15.3417 14.9512 15.1464 15.1464C14.9512 15.3417 14.9512 15.6583 15.1464 15.8536L16.7929 17.5L15.1464 19.1464C14.9512 19.3417 14.9512 19.6583 15.1464 19.8536C15.3417 20.0488 15.6583 20.0488 15.8536 19.8536L17.5 18.2071L19.1464 19.8536C19.3417 20.0488 19.6583 20.0488 19.8536 19.8536C20.0488 19.6583 20.0488 19.3417 19.8536 19.1464L18.2071 17.5L19.8536 15.8536C20.0488 15.6583 20.0488 15.3417 19.8536 15.1464C19.6583 14.9512 19.3417 14.9512 19.1464 15.1464L17.5 16.7929L15.8536 15.1464Z" 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/link_dismiss_24_regular.svg";Details
| Name | Link Dismiss |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_link_dismiss_24_regular.svg |
| Filled file | ic_fluent_link_dismiss_24_filled.svg |
| React components | LinkDismiss24Regular, LinkDismiss24Filled |
| License | MIT (© Microsoft Corporation) |