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};