From 2d4f15ee9688d2ad0ab97c2301804b9188a947f2 Mon Sep 17 00:00:00 2001 From: Dvir Pollinger Date: Fri, 3 May 2024 22:43:25 +0300 Subject: [PATCH] chore: update tooltipProps type to Partial --- packages/core/src/components/Avatar/Avatar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/components/Avatar/Avatar.tsx b/packages/core/src/components/Avatar/Avatar.tsx index 439308f9d8..9696a2f0ae 100644 --- a/packages/core/src/components/Avatar/Avatar.tsx +++ b/packages/core/src/components/Avatar/Avatar.tsx @@ -17,7 +17,7 @@ import styles from "./Avatar.module.scss"; export interface AvatarProps extends VibeComponentProps { src?: string; text?: string; - tooltipProps?: TooltipProps; + tooltipProps?: Partial; ariaLabel?: string; withoutTooltip?: boolean; icon?: SubIcon;