Skip to content

Commit

Permalink
fix(frontend): Add Amazon and Apple vendor IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
kennylevinsen authored and t0bst4r committed Nov 30, 2024
1 parent fee004c commit a244855
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/frontend/src/components/fabric/FabricIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ const iconsPerKeyword: Record<string, IconDefinition> = {
};

const vendorIdFallback: Record<number, IconDefinition | undefined> = {
24582: faGoogle,
0x1217: faAmazon,
0x1349: faApple,
0x1384: faApple,
0x6006: faGoogle,
};

export const FabricIcon = ({ fabric }: FabricIconProps) => {
Expand Down

0 comments on commit a244855

Please sign in to comment.