mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 02:42:59 +00:00 
			
		
		
		
	 7709d9df20
			
		
	
	
		7709d9df20
		
			
		
	
	
	
	
		
			
			Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			626 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			626 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { memo } from 'react'
 | |
| import { useTranslation } from 'react-i18next'
 | |
| import cn from '@/utils/classnames'
 | |
| 
 | |
| const Placeholder = ({
 | |
|   compact,
 | |
|   value,
 | |
|   className,
 | |
| }: {
 | |
|   compact?: boolean
 | |
|   value?: string
 | |
|   className?: string
 | |
| }) => {
 | |
|   const { t } = useTranslation()
 | |
| 
 | |
|   return (
 | |
|     <div className={cn(
 | |
|       className,
 | |
|       'pointer-events-none absolute left-0 top-0 h-full w-full select-none text-sm text-components-input-text-placeholder',
 | |
|       compact ? 'text-[13px] leading-5' : 'text-sm leading-6',
 | |
|     )}>
 | |
|       {value || t('common.promptEditor.placeholder')}
 | |
|     </div>
 | |
|   )
 | |
| }
 | |
| 
 | |
| export default memo(Placeholder)
 |