<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5HGSQD2L" height="0" width="0" style="display:none;visibility:hidden" title="GTM"></iframe>

Toggle Switch

A choice between two mutually exclusive options.
scriptKeys: toggleSwitchstyleKeys: toggleSwitch

Use Toggle Switch...

  • To prompt users to choose between two mutually exclusive options that always have a default value, like "on" or "off".
  • When immediately activating or deactivating the selected choice or setting.

Don't use Toggle Switch...

  • If you need to display an indeterminate value. A Toggle Switch is either "on" or "off". Use Checkbox instead.
  • To select more than one option. Use Checkbox instead.
  • To apply a setting that needs to be confirmed and reviewed by the user before they are submitted. Use Checkbox instead.
  • To select one option from a list of options. Use Radio Button instead.

The preview has been updated.

Size

Use size="mini" to reduce the height of a Toggle.

The preview has been updated.

Use size="super" to increase the height of a Toggle.

The preview has been updated.

Hide Text

Use hideText to hide the “On” and “Off” text.

The preview has been updated.

Managing state

Pass the defaultActivated prop in order to set the initial state.

The preview has been updated.

Accessibility

  • The Toggle Switch must have an accessible label that describes it: either an aria-labelledby attribute whose value is the id of the element that labels the switch, or an aria-label attribute with localized text describing the switch. If the page design does not call for a visible label for the switch, you will need to create a labelling element anyway, and then make it visually hidden.

The preview has been updated.

  • The "On" and "Off" text will not be presented by screen readers and some assistive technologies. If the purpose and function of the switch are not obvious without that text, you may need to add visually hidden text to the switch's labelling element (see above) to make the purpose of the switch more clear.

Content

  • Provide concise, explicit labels.
  • Describe the option that the switch controls.
  • Provide an explanatory error message.

References

NN/g toggle switch guidelines

Props

ToggleSwitch
This component is implemented using the <button /> as the root element. You can utilize the native attributes supported by <button /> tag. The ref is directly assigned to the root element, allowing you to access and manipulate it as needed.
See core props for additional props that can be applied to this component.
proptyperequireddescriptiondefault
size"standard" | "super" | "mini" | nullfalse
⚠️ Deprecated - This is deprecated without a replacement.
Size (height) of the toggle. Available options: 'standard', 'super', 'mini'
standard
hideTextboolean | nullfalse
Whether the on/off text is visually hidden
null
activatedboolean | nullfalse
Whether or not the switch is "activated" aka "on"
null
onRequestActivatedChange((activated: boolean, event: MouseEvent<HTMLButtonElement, MouseEvent>) => void) | nullfalse
Callback fired when the ToggleSwitch wants to change its activated state
null
defaultActivatedboolean | nullfalse
The initial activated state. Ignored if `activated` is provided
null
ToggleSwitchOffLabel
This component is implemented using the <span /> as the root element. You can utilize the native attributes supported by <span /> tag. The ref is directly assigned to the root element, allowing you to access and manipulate it as needed.
See core props for additional props that can be applied to this component.
ToggleSwitchOnLabel
This component is implemented using the <span /> as the root element. You can utilize the native attributes supported by <span /> tag. The ref is directly assigned to the root element, allowing you to access and manipulate it as needed.
See core props for additional props that can be applied to this component.


Related

Was this page useful?

Thanks for your feedback!

Feel free to include your name if you wish to have a follow up conversation.


Published: Jan 7, 2022Last updated: Oct 17, 2024