Skip to content

Instantly share code, notes, and snippets.

@DopamineDriven
Last active August 20, 2020 07:58
Show Gist options
  • Select an option

  • Save DopamineDriven/fb9d21c9d09b0406fe71ab8dde7ff45c to your computer and use it in GitHub Desktop.

Select an option

Save DopamineDriven/fb9d21c9d09b0406fe71ab8dde7ff45c to your computer and use it in GitHub Desktop.
Part 5 complete lib file
import {
library,
IconDefinition,
IconLookup
} from '@fortawesome/fontawesome-svg-core';
export interface CustomIconConstruct extends IconDefinition, IconLookup {}
export const faCustomVercelIcon: CustomIconConstruct = {
prefix: 'fac',
iconName: 'vercel-icon',
icon: [
24,
24,
[],
'none',
'M24 22.525H0l12-21.05l12 21.05z'
]
};
library.add(faCustomVercelIcon);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment