From 917c78f7ce77331203217ec521e66673d9aad0e6 Mon Sep 17 00:00:00 2001 From: Adam Brewer Date: Thu, 29 Dec 2022 20:38:24 -0500 Subject: [PATCH] Add children prop to TooltipProps interface Resolves #169 --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index a95c697..2b0c1fc 100644 --- a/index.d.ts +++ b/index.d.ts @@ -55,6 +55,7 @@ export interface TooltipProps { beforeHidden?: () => void; hidden?: () => void; theme?: Theme; + children?: React.ReactNode; className?: string; style?: React.CSSProperties; }