auditforge / frontend /src /components /button /DefaultRadioGroup.tsx
Kaballas's picture
initialize project structure with essential configurations and components
56b6519
raw
history blame contribute delete
994 Bytes
import React from 'react';
import Radio from './Radio';
export type RadioOption = {
id: string;
label: string;
value: string;
disabled?: boolean;
};
type RadioGroupProps = {
name: string;
options: RadioOption[];
value: string;
onChange: (value: string) => void;
};
const DefaultRadioGroup = ({
name,
options,
value,
onChange,
}: RadioGroupProps) => {
const handleRadioGroupChange = (
event: React.ChangeEvent<HTMLInputElement>,
) => {
onChange(event.target.value);
};
return (
<div>
{options.map(option => (
<div className="mb-3" key={option.id}>
<Radio
checked={value === option.value}
disabled={option.disabled}
id={option.id}
key={option.id}
label={option.label}
name={name}
onChange={handleRadioGroupChange}
value={option.value}
/>
</div>
))}
</div>
);
};
export default DefaultRadioGroup;