SurfSense/surfsense_web/svgr.d.ts
2026-02-10 19:06:21 +05:30

5 lines
141 B
TypeScript

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