mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-29 01:28:22 +08:00

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>
25 lines
741 B
TypeScript
25 lines
741 B
TypeScript
import type { ReactNode } from 'react'
|
|
import RadioGroupContext from '../../context'
|
|
import s from '../../style.module.css'
|
|
import cn from '@/utils/classnames'
|
|
|
|
export type TRadioGroupProps = {
|
|
children?: ReactNode | ReactNode[]
|
|
value?: string | number
|
|
className?: string
|
|
onChange?: (value: any) => void
|
|
}
|
|
|
|
export default function Group({ children, value, onChange, className = '' }: TRadioGroupProps): React.JSX.Element {
|
|
const onRadioChange = (value: any) => {
|
|
onChange?.(value)
|
|
}
|
|
return (
|
|
<div className={cn('flex items-center bg-gray-50', s.container, className)}>
|
|
<RadioGroupContext.Provider value={{ value, onChange: onRadioChange }}>
|
|
{children}
|
|
</RadioGroupContext.Provider>
|
|
</div>
|
|
)
|
|
}
|