+
+export const Demo: Story = {
+ name: 'Tooltip',
+ args: {
+ children: ,
+ title: (
+
+ This is some text, and{' '}
+ here is a link.
+
+ ),
+ },
+}
diff --git a/packages/synapse-react-client/stories/stubs/Tooltip/MuiTooltip.tsx b/packages/synapse-react-client/stories/stubs/Tooltip/MuiTooltip.tsx
new file mode 100644
index 0000000000..848c8c488a
--- /dev/null
+++ b/packages/synapse-react-client/stories/stubs/Tooltip/MuiTooltip.tsx
@@ -0,0 +1,9 @@
+import React from 'react'
+import {
+ Tooltip as MuiTooltip,
+ TooltipProps as MuiTooltipProps,
+} from '@mui/material'
+
+export interface TooltipProps extends MuiTooltipProps {}
+
+export const Tooltip = (props: TooltipProps) =>