Toggle Right icon

Used to represent options, settings, etc. Should not be used as toggle UI. The Toggle Right 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.

Regular (outlined)

SVG

Filled

SVG

Use the Toggle Right 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 { ToggleRight24Regular, ToggleRight24Filled } from "@fluentui/react-icons";

export function Example() {
  return <ToggleRight24Regular aria-label="Toggle Right" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_toggle_right_24_regular.svg" width="24" height="24" alt="Toggle Right">

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="M16.75 14.5C18.1307 14.5 19.25 13.3807 19.25 12C19.25 10.6193 18.1307 9.5 16.75 9.5C15.3693 9.5 14.25 10.6193 14.25 12C14.25 13.3807 15.3693 14.5 16.75 14.5ZM2 12C2 9.23858 4.23858 7 7 7H17C19.7614 7 22 9.23858 22 12C22 14.7614 19.7614 17 17 17H7C4.23858 17 2 14.7614 2 12ZM7 8.5C5.067 8.5 3.5 10.067 3.5 12C3.5 13.933 5.067 15.5 7 15.5H17C18.933 15.5 20.5 13.933 20.5 12C20.5 10.067 18.933 8.5 17 8.5H7Z" 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/toggle_right_24_regular.svg";

Details

NameToggle Right
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_toggle_right_24_regular.svg
Filled fileic_fluent_toggle_right_24_filled.svg
React componentsToggleRight24Regular, ToggleRight24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

onoffui

Related icons