fix(icons): import svgs as strings using raw loader

This commit is contained in:
Jack Westbrook
2025-03-03 09:40:34 +01:00
parent 03960b45f8
commit b53f9e97f0
+5
View File
@@ -2,3 +2,8 @@ declare module '*.svg' {
const content: string;
export default content;
}
declare module "*?raw" {
const content: string;
export default content;
}