diff --git a/app/components/Tooltip.js b/app/components/Tooltip.js index d5c12d0c..c87c48fb 100644 --- a/app/components/Tooltip.js +++ b/app/components/Tooltip.js @@ -8,6 +8,7 @@ type Props = { placement?: 'top' | 'bottom' | 'left' | 'right', children: React.Node, delay?: number, + className?: string, }; class Tooltip extends React.Component { @@ -16,7 +17,7 @@ class Tooltip extends React.Component { } render() { - const { tooltip, delay = 50, children, ...rest } = this.props; + const { tooltip, delay = 50, children, className, ...rest } = this.props; return ( { inertia {...rest} > - {children} + {children} ); }