ReactiveSearch components accept a prop innerProps which can be utilized for passing props to internal components as specified in the Props section of each component.

Usage

You can pass an object via the innerprops prop to pass additonal props like:

Copy
innerProps={{
    icon: {
        ...
    },
    button: {
        ...
    }
}}

Examples

This example uses the innerProps prop to pass some additional props to the internal Icon component of TextField.

Copy
<TextField
    ...
    innerprops={{        icon: {            color: 'tomato',            fontSize: 13        }    }}/>