1// Create a file named custom.d.ts with the following content:
2declare module "*.svg" {
3 const content: any;
4 export default content;
5}
6// Add the custom.d.ts to tsconfig.json as below
7"include": ["src/components", "src/custom.d.ts"]
1// custom.d.ts on root /
2
3declare module '*.svg?inline' {
4 const content: any
5 export default content
6}
7
8declare module '*.svg' {
9 const content: any
10 export default content
11}
12
13