@danielsaraldi/react-native-blur-view
Version:
A simple blur view in react native
11 lines (8 loc) • 375 B
text/typescript
import type { ViewProps } from 'react-native';
import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
import type { Float } from 'react-native/Libraries/Types/CodegenTypes';
export interface NativeProps extends ViewProps {
overlayColor: string;
blurRadius: Float;
}
export default codegenNativeComponent<NativeProps>('BlurView');