mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-05 21:21:02 +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;
|
||
|
}
|