From 43a049aae2c568a32b77751b22d753bf41506567 Mon Sep 17 00:00:00 2001 From: Rob Walker Date: Thu, 6 Feb 2020 17:41:43 +0000 Subject: [PATCH] Add missing id param to ImageProps This prop is used when creating an `` in a `` element. --- src/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.d.ts b/src/index.d.ts index 343e50ba..df0428d9 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -281,6 +281,7 @@ export interface ImageProps preserveAspectRatio?: string; opacity?: NumberProp; clipPath?: string; + id?: string; } export const Image: React.ComponentClass;