UNPKG

458 BTypeScriptView Raw
1import { ElementUIComponent } from './component'
2
3export type RadioGroupSize = 'large' | 'small'
4
5/** Radio Group Component */
6export declare class ElRadioGroup extends ElementUIComponent {
7 /** The size of radio buttons */
8 size: RadioGroupSize
9
10 /** Border and background color when button is active */
11 fill: string
12
13 /** Whether the nesting radios are disabled */
14 disabled: boolean
15
16 /** Font color when button is active */
17 textColor: string
18}