SurfSense/surfsense_web/svgr.d.ts

6 lines
141 B
TypeScript
Raw Normal View History

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