Add missing id param to ImageProps

This prop is used when creating an `<Image>` in a `<Defs>` element.
This commit is contained in:
Rob Walker
2020-02-06 17:41:43 +00:00
committed by GitHub
parent 4375ee676e
commit 43a049aae2
+1
View File
@@ -281,6 +281,7 @@ export interface ImageProps
preserveAspectRatio?: string;
opacity?: NumberProp;
clipPath?: string;
id?: string;
}
export const Image: React.ComponentClass<ImageProps>;