🐛 fix Icon component ts error with cra definition

close #13205
close #19638
This commit is contained in:
afc163
2019-12-09 14:38:36 +08:00
committed by 偏右
parent 0b1a5409bd
commit 85fcf0fe6e
5 changed files with 23 additions and 3 deletions

View File

@@ -1,4 +1,12 @@
declare module '*.svg';
// https://github.com/facebook/create-react-app/blob/f09d3d3a52c1b938cecc977c2bbc0942ea0a7e70/packages/react-scripts/lib/react-app.d.ts#L42-L49
declare module '*.svg' {
import * as React from 'react';
export const ReactComponent: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
const src: string;
export default src;
}
declare module 'rc-calendar*';