Interface ComponentOverrides

interface ComponentOverrides {
    Button?: (new (props) => PickMatching<ButtonAbstract, any>);
    RadioGroup?: (new (props) => PickMatching<RadioGroupAbstract, any>);
    Select?: (new (props) => PickMatching<SelectAbstract, any>);
    TextArea?: (new (props) => PickMatching<TextAreaAbstract, any>);
    TextInput?: (new (props) => PickMatching<TextInputAbstract, any>);
}

Properties

Button?: (new (props) => PickMatching<ButtonAbstract, any>)

Type declaration

RadioGroup?: (new (props) => PickMatching<RadioGroupAbstract, any>)

Type declaration

Select?: (new (props) => PickMatching<SelectAbstract, any>)

Type declaration

TextArea?: (new (props) => PickMatching<TextAreaAbstract, any>)

Type declaration

TextInput?: (new (props) => PickMatching<TextInputAbstract, any>)

Type declaration