Temperature Degree Fahrenheit icon
The Temperature Degree Fahrenheit 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 Temperature Degree Fahrenheit 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 { TemperatureDegreeFahrenheit24Regular, TemperatureDegreeFahrenheit24Filled } from "@fluentui/react-icons";
export function Example() {
return <TemperatureDegreeFahrenheit24Regular aria-label="Temperature Degree Fahrenheit" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_temperature_degree_fahrenheit_24_regular.svg" width="24" height="24" alt="Temperature Degree Fahrenheit"> 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 8C5 7.17157 5.67157 6.5 6.5 6.5C7.32843 6.5 8 7.17157 8 8C8 8.82843 7.32843 9.5 6.5 9.5C5.67157 9.5 5 8.82843 5 8ZM6.5 5C4.84315 5 3.5 6.34315 3.5 8C3.5 9.65685 4.84315 11 6.5 11C8.15685 11 9.5 9.65685 9.5 8C9.5 6.34315 8.15685 5 6.5 5ZM12.25 5C11.8358 5 11.5 5.33579 11.5 5.75V18.25C11.5 18.6642 11.8358 19 12.25 19C12.6642 19 13 18.6642 13 18.25V12.5H18.75C19.1642 12.5 19.5 12.1642 19.5 11.75C19.5 11.3358 19.1642 11 18.75 11H13V6.5H19.25C19.6642 6.5 20 6.16421 20 5.75C20 5.33579 19.6642 5 19.25 5H12.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/temperature_degree_fahrenheit_24_regular.svg";Details
| Name | Temperature Degree Fahrenheit |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_temperature_degree_fahrenheit_24_regular.svg |
| Filled file | ic_fluent_temperature_degree_fahrenheit_24_filled.svg |
| React components | TemperatureDegreeFahrenheit24Regular, TemperatureDegreeFahrenheit24Filled |
| License | MIT (© Microsoft Corporation) |