mirror of
https://github.com/langgenius/dify.git
synced 2026-07-24 13:08:34 +08:00
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
'use client'
|
|
import { Checkbox } from '@langgenius/dify-ui/checkbox'
|
|
import { cn } from '@langgenius/dify-ui/cn'
|
|
import { Infotip } from '@/app/components/base/infotip'
|
|
|
|
type Props = Readonly<{
|
|
className?: string
|
|
isChecked: boolean
|
|
onChange: (isChecked: boolean) => void
|
|
label: string
|
|
labelClassName?: string
|
|
tooltip?: string
|
|
}>
|
|
|
|
export default function CheckboxWithLabel({
|
|
className = '',
|
|
isChecked,
|
|
onChange,
|
|
label,
|
|
labelClassName,
|
|
tooltip,
|
|
}: Props) {
|
|
return (
|
|
<div className={cn(className, 'flex h-7 items-center')}>
|
|
<label className="flex min-w-0 cursor-pointer items-center">
|
|
<Checkbox checked={isChecked} onCheckedChange={(checked) => onChange(checked)} />
|
|
<span
|
|
className={cn(
|
|
'ml-2 min-w-0 text-left text-sm font-normal text-text-secondary',
|
|
labelClassName,
|
|
)}
|
|
>
|
|
{label}
|
|
</span>
|
|
</label>
|
|
<div className="ml-1 flex min-w-0 items-center">
|
|
{tooltip && (
|
|
<Infotip aria-label={tooltip} popupClassName="w-[200px]">
|
|
{tooltip}
|
|
</Infotip>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|