File size: 399 Bytes
4304c6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use client'
import type { FC } from 'react'
import React from 'react'
import cn from '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)