mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 08:33:20 +00:00
9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
declare module "*.svg" {
|
|
import * as React from "react";
|
|
|
|
const ReactComponent: React.FunctionComponent<
|
|
React.SVGProps<SVGSVGElement> & { title?: string }
|
|
>;
|
|
|
|
export default ReactComponent;
|
|
} |