From 654f76115746f94d23cf2e0967a300b4da51a9ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Celczy=C5=84ski?= <35396312+GR34SE@users.noreply.github.com> Date: Sat, 9 May 2020 01:40:44 +0200 Subject: [PATCH] fix: change Props theme type (#616) --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 738d4ddc..f8e15949 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1,5 +1,5 @@ export type Props = { - theme: object; + theme: object | any; }; export type Orientation = 'portrait' | 'landscape';