Skip to content

Instantly share code, notes, and snippets.

@DopamineDriven
Created August 20, 2020 07:31
Show Gist options
  • Save DopamineDriven/bb71caba16013898764191c7ef82b857 to your computer and use it in GitHub Desktop.
Save DopamineDriven/bb71caba16013898764191c7ef82b857 to your computer and use it in GitHub Desktop.
IconLookup Interface Inspection
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