SurfSense/surfsense_web/svgr.d.ts
2026-07-15 15:48:54 +05:30

6 lines
142 B
TypeScript

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