import * as React from "react"; const cssStyle = require("./RadioButton.scss"); export const RadioButton = (props: { children?: React.ReactNode | string | React.ReactNode[], name: string, selected: boolean, disabled?: boolean onChange: (checked: boolean) => void, }) => { return (