Skip to content

Commit

Permalink
Add titleProp to SVGR ReactComponent type definition (#8099)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhnorskov committed Jan 30, 2020
1 parent b855da5 commit ddcb7d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/react-scripts/lib/react-app.d.ts
Expand Up @@ -42,7 +42,9 @@ declare module '*.webp' {
declare module '*.svg' {
import * as React from 'react';

export const ReactComponent: React.FunctionComponent<React.SVGProps<SVGSVGElement>>;
export const ReactComponent: React.FunctionComponent<React.SVGProps<
SVGSVGElement
> & { title?: string }>;

const src: string;
export default src;
Expand Down

0 comments on commit ddcb7d5

Please sign in to comment.