Chat Arrow Back Down icon
Used in real time chat scenarios (versus comment - different icon). The Chat Arrow Back Down 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 Chat Arrow Back Down 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 { ChatArrowBackDown24Regular, ChatArrowBackDown24Filled } from "@fluentui/react-icons";
export function Example() {
return <ChatArrowBackDown24Regular aria-label="Chat Arrow Back Down" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_chat_arrow_back_down_24_regular.svg" width="24" height="24" alt="Chat Arrow Back Down"> 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="M12 2C17.5228 2 22 6.47715 22 12C22 12.2628 21.9899 12.5232 21.97 12.7809C21.5319 12.3658 21.0361 12.0111 20.4958 11.73C20.3532 7.16054 16.6041 3.5 12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 13.4696 3.87277 14.8834 4.57303 16.1375L4.72368 16.4072L3.61096 20.3914L7.59755 19.2792L7.86709 19.4295C9.04305 20.0852 10.3592 20.4531 11.73 20.4958C12.0111 21.0361 12.3658 21.5319 12.7809 21.97C12.5232 21.9899 12.2628 22 12 22C10.3817 22 8.81782 21.6146 7.41286 20.888L3.58704 21.9553C2.92212 22.141 2.23258 21.7525 2.04691 21.0876C1.98546 20.8676 1.98549 20.6349 2.04695 20.4151L3.11461 16.5922C2.38637 15.186 2 13.6203 2 12C2 6.47715 6.47715 2 12 2ZM23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23C20.5376 23 23 20.5376 23 17.5ZM16.3536 19.6464C16.5488 19.8417 16.5488 20.1583 16.3536 20.3536C16.1583 20.5488 15.8417 20.5488 15.6464 20.3536L14.1464 18.8536C13.9512 18.6583 13.9512 18.3417 14.1464 18.1464L15.6464 16.6464C15.8417 16.4512 16.1583 16.4512 16.3536 16.6464C16.5488 16.8417 16.5488 17.1583 16.3536 17.3536L15.7071 18H17.75C18.9926 18 20 16.9926 20 15.75V15.5C20 15.2239 20.2239 15 20.5 15C20.7761 15 21 15.2239 21 15.5V15.75C21 17.5449 19.5449 19 17.75 19H15.7071L16.3536 19.6464Z" 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/chat_arrow_back_down_24_regular.svg";Details
| Name | Chat Arrow Back Down |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_chat_arrow_back_down_24_regular.svg |
| Filled file | ic_fluent_chat_arrow_back_down_24_filled.svg |
| React components | ChatArrowBackDown24Regular, ChatArrowBackDown24Filled |
| License | MIT (© Microsoft Corporation) |