Comment Dismiss icon

Used in commenting scenarios. The Comment 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.

Regular (outlined)

SVG

Filled

SVG

Use the Comment 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 { CommentDismiss24Regular, CommentDismiss24Filled } from "@fluentui/react-icons";

export function Example() {
  return <CommentDismiss24Regular aria-label="Comment Dismiss" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_comment_dismiss_24_regular.svg" width="24" height="24" alt="Comment 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="M23 6.5C23 9.53757 20.5376 12 17.5 12C14.4624 12 12 9.53757 12 6.5C12 3.46243 14.4624 1 17.5 1C20.5376 1 23 3.46243 23 6.5ZM15.8536 4.14645C15.6583 3.95118 15.3417 3.95118 15.1464 4.14645C14.9512 4.34171 14.9512 4.65829 15.1464 4.85355L16.7929 6.5L15.1464 8.14645C14.9512 8.34171 14.9512 8.65829 15.1464 8.85355C15.3417 9.04881 15.6583 9.04881 15.8536 8.85355L17.5 7.20711L19.1464 8.85355C19.3417 9.04881 19.6583 9.04881 19.8536 8.85355C20.0488 8.65829 20.0488 8.34171 19.8536 8.14645L18.2071 6.5L19.8536 4.85355C20.0488 4.65829 20.0488 4.34171 19.8536 4.14645C19.6583 3.95118 19.3417 3.95118 19.1464 4.14645L17.5 5.79289L15.8536 4.14645ZM20.5 14.75V12.2678C21.051 11.9806 21.5557 11.6168 22 11.1904V14.75C22 16.5449 20.5449 18 18.75 18H13.0125L7.99868 21.7507C7.44585 22.1642 6.6625 22.0512 6.24901 21.4984C6.08736 21.2822 6 21.0196 6 20.7499L5.99921 18H5.25C3.45507 18 2 16.5449 2 14.75V6.25C2 4.45507 3.45507 3 5.25 3H12.0218C11.7253 3.46321 11.4858 3.96653 11.3135 4.5H5.25C4.2835 4.5 3.5 5.2835 3.5 6.25V14.75C3.5 15.7165 4.2835 16.5 5.25 16.5H7.49879L7.49986 20.2506L12.5135 16.5H18.75C19.7165 16.5 20.5 15.7165 20.5 14.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/comment_dismiss_24_regular.svg";

Details

NameComment Dismiss
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_comment_dismiss_24_regular.svg
Filled fileic_fluent_comment_dismiss_24_filled.svg
React componentsCommentDismiss24Regular, CommentDismiss24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

chatmentiondiscussion

Related icons