mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
fix(type-aliases): add `title` prop for imported inline SVG React components (#9612)
Co-authored-by: Sébastien Lorber <slorber@users.noreply.github.com>
This commit is contained in:
parent
56396f32eb
commit
8dd1e13f2a
|
|
@ -356,7 +356,9 @@ declare module '@docusaurus/useGlobalData' {
|
|||
declare module '*.svg' {
|
||||
import type {ComponentType, SVGProps} from 'react';
|
||||
|
||||
const ReactComponent: ComponentType<SVGProps<SVGSVGElement>>;
|
||||
const ReactComponent: ComponentType<
|
||||
SVGProps<SVGSVGElement> & {title?: string}
|
||||
>;
|
||||
|
||||
export default ReactComponent;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue