@codecademy/gamut

72.2.472.2.5-alpha.b8f078.0
dist/Tip/ToolTip/index.js
~dist/Tip/ToolTip/index.jsModified
+2
Index: package/dist/Tip/ToolTip/index.js
===================================================================
--- package/dist/Tip/ToolTip/index.js
+++ package/dist/Tip/ToolTip/index.js
@@ -5,8 +5,9 @@
 import { tipDefaultProps } from '../shared/types';
 import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
 export const ToolTip = ({
   alignment = 'top-center',
+  closeOnClick = true,
   children,
   info,
   placement = tipDefaultProps.placement,
   id,
@@ -20,8 +21,9 @@
   const isFloating = placement === 'floating';
   const Tip = loaded && isFloating ? FloatingTip : InlineTip;
   const tipProps = {
     alignment,
+    closeOnClick,
     info,
     wrapperRef,
     ...rest
   };