mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 16:43:16 +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 }
|
|
>;
|
|
}
|