SurfSense/surfsense_web/svgr.d.ts

7 lines
142 B
TypeScript
Raw Normal View History

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