import { CustomizeContext } from "../../providers/CustomizeProvider"; import { useContext } from "react"; interface RadioProps { id: string; name: string; label: string; onChange: () => void; checked: boolean; } export const RadioCheckbox = (props: RadioProps) => { const { id, name, label, onChange, checked } = props; const customSettings = useContext(CustomizeContext); const { borderRadius } = customSettings.customization; return (