import { TooltipRenderProps } from 'react-joyride' import { Button } from '@/components/ui/button' import { cn } from '@/lib/utils' export function CustomTooltipJoyRide(props: TooltipRenderProps) { const { backProps, closeProps, continuous, index, primaryProps, skipProps, step, tooltipProps, } = props return (
{!step.hideCloseButton && (
)} {step.title &&

{step.title}

}
{step.content}
{step.showSkipButton && ( )}
{index > 0 && ( )} {continuous && ( )}
) }