UNPKG

@sbaiahmed1/react-native-blur

Version:
12 lines 1.11 kB
import type { CodegenTypes, ViewProps } from 'react-native'; export type BlurType = 'xlight' | 'light' | 'dark' | 'extraDark' | 'regular' | 'prominent' | 'systemUltraThinMaterial' | 'systemThinMaterial' | 'systemMaterial' | 'systemThickMaterial' | 'systemChromeMaterial' | 'systemUltraThinMaterialLight' | 'systemThinMaterialLight' | 'systemMaterialLight' | 'systemThickMaterialLight' | 'systemChromeMaterialLight' | 'systemUltraThinMaterialDark' | 'systemThinMaterialDark' | 'systemMaterialDark' | 'systemThickMaterialDark' | 'systemChromeMaterialDark'; export interface NativeProps extends ViewProps { blurAmount?: CodegenTypes.WithDefault<CodegenTypes.Double, 10.0>; blurType?: CodegenTypes.WithDefault<BlurType, 'xlight'>; blurRounds?: CodegenTypes.WithDefault<CodegenTypes.Int32, 5>; reducedTransparencyFallbackColor?: CodegenTypes.WithDefault<string, '#FFFFFF'>; ignoreSafeArea?: CodegenTypes.WithDefault<boolean, true>; } declare const _default: import("react-native").HostComponent<NativeProps>; export default _default; //# sourceMappingURL=ReactNativeBlurViewNativeComponent.d.ts.map