Skip to content

Commit

Permalink
fix(VIcon): support fontawsome kits
Browse files Browse the repository at this point in the history
fixes #13649
  • Loading branch information
KaelWD committed May 17, 2021
1 parent b738de5 commit 1f1a07c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vuetify/src/components/VIcon/VIcon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ enum SIZE_MAP {
}

function isFontAwesome5 (iconType: string): boolean {
return ['fas', 'far', 'fal', 'fab', 'fad'].some(val => iconType.includes(val))
return ['fas', 'far', 'fal', 'fab', 'fad', 'fak'].some(val => iconType.includes(val))
}

function isSvgPath (icon: string): boolean {
Expand Down

0 comments on commit 1f1a07c

Please sign in to comment.