diff --git a/components/radio/radioButton.tsx b/components/radio/radioButton.tsx index ab01f0bace..d7403eac8b 100644 --- a/components/radio/radioButton.tsx +++ b/components/radio/radioButton.tsx @@ -1,13 +1,8 @@ import React, { PropTypes } from 'react'; +import { AbstractCheckboxProps } from '../checkbox/Checkbox'; import Radio from './radio'; -export interface RadioButtonProps { - value: string | number; - style?: React.CSSProperties; - disabled?: boolean; - checked?: boolean; - onChange?: (e: any) => any; -} +export interface RadioButtonProps extends AbstractCheckboxProps {} export default class RadioButton extends React.Component { static defaultProps = {