mirror of https://github.com/ElemeFE/element
16 lines
388 B
TypeScript
16 lines
388 B
TypeScript
import { ElementUIComponent } from './component'
|
|
|
|
export type RadioGroupSize = 'large' | 'small'
|
|
|
|
/** Radio Group Component */
|
|
export declare class ElRadioGroup extends ElementUIComponent {
|
|
/** The size of radio buttons */
|
|
size: RadioGroupSize
|
|
|
|
/** Border and background color when button is active */
|
|
fill: string
|
|
|
|
/** Font color when button is active */
|
|
textColor: string
|
|
}
|