feat(toggle): on/off icons for toggle (#25459)

Resolves #20524
This commit is contained in:
Sean Perkins
2022-07-06 12:39:34 -04:00
committed by GitHub
parent 7cdc388b78
commit bc0bdc438b
33 changed files with 493 additions and 21 deletions

View File

@ -2983,6 +2983,10 @@ export namespace Components {
* If `true`, the user cannot interact with the toggle.
*/
"disabled": boolean;
/**
* Enables the on/off accessibility switch labels within the toggle.
*/
"enableOnOffLabels": boolean | undefined;
/**
* The mode determines which platform styles to use.
*/
@ -6935,6 +6939,10 @@ declare namespace LocalJSX {
* If `true`, the user cannot interact with the toggle.
*/
"disabled"?: boolean;
/**
* Enables the on/off accessibility switch labels within the toggle.
*/
"enableOnOffLabels"?: boolean | undefined;
/**
* The mode determines which platform styles to use.
*/