From 18c93b5d5f789baf126a7cd2c8021fd445f89391 Mon Sep 17 00:00:00 2001 From: Siddharth Movaliya Date: Thu, 12 Oct 2023 10:31:43 +0530 Subject: [PATCH] change side type from string to standards used in Tooltip.tsx --- packages/ui/components/button/Button.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/components/button/Button.tsx b/packages/ui/components/button/Button.tsx index 1e5424a771..5948a898f3 100644 --- a/packages/ui/components/button/Button.tsx +++ b/packages/ui/components/button/Button.tsx @@ -228,7 +228,7 @@ const Wrapper = ({ }: { tooltip?: string; children: React.ReactNode; - side?: string; + side?: "top" | "right" | "bottom" | "left"; }) => { if (!tooltip) { return <>{children};