Toggle Left icon

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

Regular (outlined)

SVG

Filled

SVG

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

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

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_toggle_left_24_regular.svg" width="24" height="24" alt="Toggle 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="M7.25 14.5C5.86929 14.5 4.75 13.3807 4.75 12C4.75 10.6193 5.86929 9.5 7.25 9.5C8.63071 9.5 9.75 10.6193 9.75 12C9.75 13.3807 8.63071 14.5 7.25 14.5ZM22 12C22 9.23858 19.7614 7 17 7H7C4.23858 7 2 9.23858 2 12C2 14.7614 4.23858 17 7 17H17C19.7614 17 22 14.7614 22 12ZM17 8.5C18.933 8.5 20.5 10.067 20.5 12C20.5 13.933 18.933 15.5 17 15.5H7C5.067 15.5 3.5 13.933 3.5 12C3.5 10.067 5.067 8.5 7 8.5H17Z" 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_left_24_regular.svg";

Details

NameToggle Left
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_toggle_left_24_regular.svg
Filled fileic_fluent_toggle_left_24_filled.svg
React componentsToggleLeft24Regular, ToggleLeft24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

onoffui

Related icons