Weird warning comes out from expo-linear-gradient

I keep getting the following warning:

Tried to set property ‘focusable’ on view manager of view
‘ExpoLinearGradient’ when the view manager does not export such prop.

here is the code:

import {LinearGradient} from "expo-linear-gradient";
...........
 <LinearGradient
    style={[styles.button, style]}
    start={{x: 0.1, y: 0.5}}
    end={{x: 0.5, y: 1.0}}
    colors={colorsPair}> // [color, color]
    {children}
 </LinearGradient>