mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-02 03:40:17 +00:00
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
|
declare module '*.svg' {
|
||
|
import * as React from 'react';
|
||
|
|
||
|
export const ReactComponent: React.FunctionComponent<
|
||
|
React.SVGProps<SVGSVGElement> & { title?: string }
|
||
|
>;
|
||
|
}
|