Radio Button Off icon
Used in selected state scenarios in UI. The Radio Button Off icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 16 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_radio_button_off_16_regular.svg
Radio Button Off icon in React
npm install @fluentui/react-icons
import { RadioButtonOff16Regular } from "@fluentui/react-icons";
export function Example() {
return <RadioButtonOff16Regular aria-label="Radio Button Off" />;
}Use the Radio Button Off 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 { RadioButtonOff16Regular, RadioButtonOff16Filled } from "@fluentui/react-icons";
export function Example() {
return <RadioButtonOff16Regular aria-label="Radio Button Off" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_radio_button_off_16_regular.svg" width="16" height="16" alt="Radio Button Off"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="m1.85 1.15 13 13a.5.5 0 0 1-.7.7l-2.28-2.27a6 6 0 0 1-8.46-8.46L1.16 1.86a.5.5 0 0 1 .7-.7M3 8a5 5 0 0 0 5 5c1.2 0 2.3-.42 3.16-1.13L4.13 4.84A5 5 0 0 0 3 8m10 0a5 5 0 0 0-5-5c-.83 0-1.6.22-2.3.58l-.74-.75a6 6 0 0 1 8.2 8.2l-.74-.73q.56-1.05.58-2.3"/></svg>Details
| Name | Radio Button Off |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px |
| Regular (outlined) file | ic_fluent_radio_button_off_16_regular.svg |
| Filled file | ic_fluent_radio_button_off_16_filled.svg |
| React (Regular) | RadioButtonOff16Regular |
| React (Filled) | RadioButtonOff16Filled |
| License | MIT (© Microsoft Corporation) |