Module Svg.Attributes was not found. Make sure the source file exists, and that it has been provided as an input to the compiler. code example
Example: Cannot find module '../../images/home.svg' or its corresponding type declarations
// custom.d.ts on root /
declare module '*.svg?inline' {
const content: any
export default content
}
declare module '*.svg' {
const content: any
export default content
}