Comment Multiple icon
Used in commenting scenarios. The Comment Multiple 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 Comment Multiple 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 { CommentMultiple24Regular, CommentMultiple24Filled } from "@fluentui/react-icons";
export function Example() {
return <CommentMultiple24Regular aria-label="Comment Multiple" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_comment_multiple_24_regular.svg" width="24" height="24" alt="Comment Multiple"> 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="M5.00648 5.00686C5.08708 5.00231 5.16827 5 5.25 5H15.75C18.0972 5 20 6.90279 20 9.25V15.75C20 15.8317 19.9977 15.9129 19.9931 15.9934C20.899 15.4166 21.5 14.4035 21.5 13.25V9.25C21.5 6.07436 18.9256 3.5 15.75 3.5H7.74996C6.59644 3.5 5.58328 4.10095 5.00648 5.00686ZM5.25 6C3.45507 6 2 7.45507 2 9.25V15.75C2 17.4608 3.32189 18.8629 5 18.9905V20.752C5 21.7762 6.16433 22.3657 6.98989 21.7595L10.7475 19H15.75C17.5449 19 19 17.5449 19 15.75V9.25C19 7.45507 17.5449 6 15.75 6H5.25ZM3.5 9.25C3.5 8.2835 4.2835 7.5 5.25 7.5H15.75C16.7165 7.5 17.5 8.2835 17.5 9.25V15.75C17.5 16.7165 16.7165 17.5 15.75 17.5H10.2559L6.5 20.2582V17.5H5.25C4.2835 17.5 3.5 16.7165 3.5 15.75V9.25Z" 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_multiple_24_regular.svg";Details
| Name | Comment Multiple |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_comment_multiple_24_regular.svg |
| Filled file | ic_fluent_comment_multiple_24_filled.svg |
| React components | CommentMultiple24Regular, CommentMultiple24Filled |
| License | MIT (© Microsoft Corporation) |