Type Alias: RadioProps

RadioProps = Omit<InputHTMLAttributes<HTMLInputElement>, "color" | "size" | "type"> & Partial<{ color: RadioColor; label: ReactNode; size: RadioSize; }>

Props accepted by the Radio component.