Files
dify/web/app/components/app/configuration/config-var/config-modal/field.tsx
Stephen Zhou 1873b22e96 refactor: update to tailwind v4 (#34415)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
2026-04-02 07:06:11 +00:00

38 lines
833 B
TypeScript

'use client'
import type { FC } from 'react'
import * as React from 'react'
import { useTranslation } from 'react-i18next'
import { cn } from '@/utils/classnames'
type Props = {
className?: string
title: string
isOptional?: boolean
children: React.JSX.Element
}
const Field: FC<Props> = ({
className,
title,
isOptional,
children,
}) => {
const { t } = useTranslation()
return (
<div className={cn(className)}>
<div className="leading-8! text-text-secondary system-sm-semibold">
{title}
{isOptional && (
<span className="ml-1 text-text-tertiary system-xs-regular">
(
{t('variableConfig.optional', { ns: 'appDebug' })}
)
</span>
)}
</div>
<div>{children}</div>
</div>
)
}
export default React.memo(Field)