16e43a13933cd61f85602c4545645e6010e8077e752cf7c01d05cc5fe70d62640d7c553256e4c2216d80dfede63b465f5e09751b6e5385da5fd966591fca98 458 B

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