kleros/kleros-v2

View on GitHub
web-devtools/svgr.d.ts

Summary

Maintainability
A
0 mins
Test Coverage
declare module "*.svg" {
  import { FC, SVGProps } from "react";
  const content: FC<SVGProps<SVGElement>>;
  export default content;
}

declare module "*.svg?url" {
  const content: any;
  export default content;
}