framework7-icons
framework7-icons copied to clipboard
Could not find a declaration file for module 'framework7-icons/vue'
When using TS in vue i got this issue:

As a stopgap for this, I've added a framework7-icons.d.ts TypeScript declaration file with content like the following:
declare module "framework7-icons/vue" {
const ShiftFill: unknown;
const RocketFill: unknown;
}
This clears up the warning for me!