Created
February 28, 2019 05:51
-
-
Save winperec/052cba5e7fcb563ab92ccc8ae2f0b1bb to your computer and use it in GitHub Desktop.
Example of Icons
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare type FabricIcon = | |
| 'SignOut' | |
| 'CustomIcon' | |
| 'None' | |
| 'AADLogo' | |
| 'Accept' | |
| 'AccessLogo' | |
| 'AccessLogoFill' | |
| 'Accounts' | |
| 'ActivityFeed' | |
| 'Add'; | |
const SignOutIcon : FabricIcon = 'SignOut'; // is OK | |
const NonExistingIcon : FabricIcon = 'NonExistingIcon'; // compile error |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment