File size: 943 Bytes
4304c6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
'use client'
import type { FC } from 'react'
import React from 'react'
import cn from 'classnames'
import s from './style.module.css'

type Props = {
  className?: string
  title: string
  description: string
  isChosen: boolean
  onChosen: () => void
  chosenConfig?: React.ReactNode
  icon?: JSX.Element
}

const RadioCard: FC<Props> = ({

  title,

  description,

  isChosen,

  onChosen,

  icon,

}) => {
  return (
    <div

      className={cn(s.item, isChosen && s.active, 'flex')}

      onClick={onChosen}

    >

      {icon}

      <div>

        <div className='flex justify-between items-center'>

          <div className='leading-5 text-sm font-medium text-gray-900'>{title}</div>

          <div className={s.radio}></div>

        </div>

        <div className='leading-[18px] text-xs font-normal text-gray-500'>{description}</div>

      </div>

    </div>
  )
}
export default React.memo(RadioCard)