Skip to content

Commit

Permalink
feat(VIcon): add font awesome duotone support (#9170)
Browse files Browse the repository at this point in the history
closes #8398
  • Loading branch information
simjes authored and johnleider committed Nov 30, 2019
1 parent 9aa761e commit 629b595
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'].some(val => iconType.includes(val))
return ['fas', 'far', 'fal', 'fab', 'fad'].some(val => iconType.includes(val))
}

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

0 comments on commit 629b595

Please sign in to comment.