34 lines
817 B
TypeScript
34 lines
817 B
TypeScript
import React, { PropsWithChildren } from 'react'
|
|
|
|
import styles from './index.module.scss'
|
|
|
|
interface Props {
|
|
controlGroup: string
|
|
inputName: string
|
|
name: string
|
|
selected: boolean
|
|
onClick: (event: React.ChangeEvent<HTMLInputElement>) => void
|
|
}
|
|
|
|
const RepSegment = ({ children, ...props }: PropsWithChildren<Props>) => {
|
|
return (
|
|
<div className={styles.segment}>
|
|
<input
|
|
name={props.controlGroup}
|
|
id={props.inputName}
|
|
value={props.inputName}
|
|
type="radio"
|
|
checked={props.selected}
|
|
onChange={props.onClick}
|
|
/>
|
|
<label htmlFor={props.inputName}>
|
|
<div className={styles.wrapper}>
|
|
{children}
|
|
<div className={styles.title}>{props.name}</div>
|
|
</div>
|
|
</label>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default RepSegment
|