diff --git a/components/dashboard/src/components/Tooltip.tsx b/components/dashboard/src/components/Tooltip.tsx index 26576811333045..50ef03f647fc9f 100644 --- a/components/dashboard/src/components/Tooltip.tsx +++ b/components/dashboard/src/components/Tooltip.tsx @@ -9,14 +9,15 @@ import { useState } from 'react'; export interface TooltipProps { children: React.ReactChild[] | React.ReactChild; content: string; + className?: string; } function Tooltip(props: TooltipProps) { const [expanded, setExpanded] = useState(false); return ( -