feat: integrate SVGR for SVG handling in webpack and add new provider icons

This commit is contained in:
Anish Sarkar 2026-02-10 16:23:12 +05:30
parent efe8755132
commit 8dd2b15796
38 changed files with 2105 additions and 105 deletions

6
surfsense_web/svgr.d.ts vendored Normal file
View file

@ -0,0 +1,6 @@
declare module "*.svg" {
import type { FC, SVGProps } from "react";
const content: FC<SVGProps<SVGSVGElement>>;
export default content;
}