mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
19 lines
389 B
TypeScript
19 lines
389 B
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import React from 'react'
|
|
import cn from '@/utils/classnames'
|
|
|
|
type Props = {
|
|
isChecked: boolean
|
|
}
|
|
|
|
const RadioUI: FC<Props> = ({
|
|
isChecked,
|
|
}) => {
|
|
return (
|
|
<div className={cn(isChecked ? 'border-[5px] border-[#155eef]' : 'border-[2px] border-gray-200', 'w-4 h-4 rounded-full')}>
|
|
</div>
|
|
)
|
|
}
|
|
export default React.memo(RadioUI)
|