28 lines
640 B
TypeScript
Raw Normal View History

import { memo } from 'react'
import { useTranslation } from 'react-i18next'
import cn from '@/utils/classnames'
const Placeholder = ({
compact,
value,
className,
}: {
compact?: boolean
2025-05-13 16:01:58 +08:00
value?: string | JSX.Element
className?: string
}) => {
const { t } = useTranslation()
return (
<div className={cn(
'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',
2025-05-13 16:01:58 +08:00
className,
)}>
{value || t('common.promptEditor.placeholder')}
</div>
)
}
export default memo(Placeholder)