Compass Northwest icon
Used for directional indicator & location scenarios. The Compass Northwest 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 Compass Northwest 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 { CompassNorthwest24Regular, CompassNorthwest24Filled } from "@fluentui/react-icons";
export function Example() {
return <CompassNorthwest24Regular aria-label="Compass Northwest" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_compass_northwest_24_regular.svg" width="24" height="24" alt="Compass Northwest"> 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 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2ZM12 3.5C7.30558 3.5 3.5 7.30558 3.5 12C3.5 16.6944 7.30558 20.5 12 20.5C16.6944 20.5 20.5 16.6944 20.5 12C20.5 7.30558 16.6944 3.5 12 3.5ZM7.08301 8.70801C6.67677 7.68861 7.68762 6.67797 8.70703 7.08398L8.91309 7.16602L12.6592 8.59082C13.9277 9.07301 14.93 10.075 15.4121 11.3438L15.5742 11.7715L17.1973 15.5557C17.6416 16.5927 16.5927 17.6415 15.5557 17.1973L11.7988 15.5869L11.3428 15.4141C10.0743 14.9319 9.072 13.9298 8.58984 12.6611L7.20898 9.02539L7.08301 8.70801ZM10.082 12.1807C10.4017 12.9827 11.0277 13.6247 11.8213 13.9648L12.3428 14.1875L15.3184 15.3203L14.1768 12.3174L13.9648 11.8213C13.6248 11.0278 12.9826 10.4017 12.1807 10.082L8.69238 8.69238L10.082 12.1807Z" 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/compass_northwest_24_regular.svg";Details
| Name | Compass Northwest |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_compass_northwest_24_regular.svg |
| Filled file | ic_fluent_compass_northwest_24_filled.svg |
| React components | CompassNorthwest24Regular, CompassNorthwest24Filled |
| License | MIT (© Microsoft Corporation) |