import * as React from 'react'; import { View } from 'react-native'; import { BlurProps } from './BlurView.types'; import getBackgroundColor from './getBackgroundColor'; class BlurView extends React.Component { render() { const { tint = 'default', intensity = 100, style, ...props } = this.props; const backgroundColor = getBackgroundColor(intensity, tint); return ; } } export default BlurView;