radio-group.d.ts 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. }