dify/web/app/components/datasets/create/website/base/field.tsx
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

56 lines
1.3 KiB
TypeScript

'use client'
import type { FC } from 'react'
import { cn } from '@langgenius/dify-ui/cn'
import * as React from 'react'
import { Infotip } from '@/app/components/base/infotip'
import Input from './text-input'
type Props = Readonly<{
className?: string
label: string
labelClassName?: string
value: string | number
onChange: (value: string | number) => void
isRequired?: boolean
placeholder?: string
isNumber?: boolean
tooltip?: string
}>
const Field: FC<Props> = ({
className,
label,
labelClassName,
value,
onChange,
isRequired = false,
placeholder = '',
isNumber = false,
tooltip,
}) => {
return (
<div className={cn(className)}>
<div className="flex py-[7px]">
<div
className={cn(
labelClassName,
'flex h-[16px] items-center text-[13px] font-semibold text-text-secondary',
)}
>
{label}{' '}
</div>
{isRequired && (
<span className="ml-0.5 text-xs font-semibold text-text-destructive">*</span>
)}
{tooltip && (
<Infotip aria-label={tooltip} className="ml-0.5" popupClassName="w-[200px]">
{tooltip}
</Infotip>
)}
</div>
<Input value={value} onChange={onChange} placeholder={placeholder} isNumber={isNumber} />
</div>
)
}
export default React.memo(Field)