import { cn } from '@langgenius/dify-ui/cn' import { RiArrowLeftSLine, RiArrowRightSLine } from '@remixicon/react' import * as React from 'react' import { useTranslation } from 'react-i18next' import { Button } from '@/app/components/base/ui/button' import Tooltip from '../base/tooltip' import ShortcutsName from '../workflow/shortcuts-name' type TooltipContentProps = { expand: boolean } const TOGGLE_SHORTCUT = ['ctrl', 'B'] const TooltipContent = ({ expand, }: TooltipContentProps) => { const { t } = useTranslation() return (