@danielsaraldi/react-native-blur-view
Version:
A simple blur view in react native
13 lines • 662 B
TypeScript
import type { ColorValue, ViewProps } from 'react-native';
import type { Float, Int32, WithDefault } from 'react-native/Libraries/Types/CodegenTypes';
export interface NativeProps extends ViewProps {
targetId?: WithDefault<Int32, null>;
overlayColor?: WithDefault<string, 'light'>;
radius?: WithDefault<Float, 10.0>;
downscaleFactor?: WithDefault<Float, 6.0>;
reducedTransparencyFallbackColor?: ColorValue;
androidColor?: ColorValue;
}
declare const _default: import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType<NativeProps>;
export default _default;
//# sourceMappingURL=BlurViewNativeComponent.d.ts.map