Created
August 20, 2020 07:31
-
-
Save DopamineDriven/bb71caba16013898764191c7ef82b857 to your computer and use it in GitHub Desktop.
IconLookup Interface Inspection
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
export type IconPrefix = "fas" | "fab" | "far" | "fal" | "fad"; | |
export type IconPathData = string | string[] | |
export interface IconLookup { | |
prefix: IconPrefix; | |
// IconName is defined in the code that will be generated at build time and bundled with this file. | |
iconName: IconName; | |
} | |
export type IconName = '500px' | | |
'accessible-icon' | | |
'accusoft' | | |
'acquisitions-incorporated' | | |
// ...7,846 lines later... | |
'wrench' | | |
'x-ray' | | |
'yen-sign' | | |
'yin-yang'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment