import type { ReactNode } from 'react' import { cn } from '@langgenius/dify-ui/cn' import { memo } from 'react' import { useTranslation } from 'react-i18next' const Placeholder = ({ compact, value, className, }: { compact?: boolean value?: ReactNode className?: string }) => { const { t } = useTranslation() return (