Arrow Circle Left icon
Used for directional indicators. The Arrow Circle Left 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 Arrow Circle Left 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 { ArrowCircleLeft24Regular, ArrowCircleLeft24Filled } from "@fluentui/react-icons";
export function Example() {
return <ArrowCircleLeft24Regular aria-label="Arrow Circle Left" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_arrow_circle_left_24_regular.svg" width="24" height="24" alt="Arrow Circle Left"> 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.2801 16.5307L12.3527 16.4466C12.5706 16.153 12.5464 15.7363 12.2801 15.47L9.56078 12.7507L16.2505 12.7504L16.3523 12.7435C16.7183 12.6939 17.0005 12.3801 17.0005 12.0004L16.9936 11.8986C16.944 11.5325 16.6302 11.2504 16.2505 11.2504L9.55878 11.2507L12.2807 8.52997L12.3534 8.44587C12.5713 8.1523 12.5471 7.73563 12.2809 7.46931C11.9881 7.17637 11.5132 7.17628 11.2203 7.46911L7.21873 11.4691L7.14609 11.5532C6.92816 11.8468 6.95233 12.2636 7.21863 12.5299L11.2195 16.5307L11.3036 16.6033C11.5972 16.8212 12.0138 16.797 12.2801 16.5307ZM12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2ZM12 20.5C7.30558 20.5 3.5 16.6944 3.5 12C3.5 7.30558 7.30558 3.5 12 3.5C16.6944 3.5 20.5 7.30558 20.5 12C20.5 16.6944 16.6944 20.5 12 20.5Z" 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/arrow_circle_left_24_regular.svg";Details
| Name | Arrow Circle Left |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_arrow_circle_left_24_regular.svg |
| Filled file | ic_fluent_arrow_circle_left_24_filled.svg |
| React components | ArrowCircleLeft24Regular, ArrowCircleLeft24Filled |
| License | MIT (© Microsoft Corporation) |