blur-react-native
Version:
32 lines • 889 B
TypeScript
import React from 'react';
import type { ViewStyle } from 'react-native';
import { type BlurType } from './JellifyBlurViewNativeComponent';
export type { BlurType } from './JellifyBlurViewNativeComponent';
export interface BlurViewProps {
/**
* The blur effect type to apply
* @default 'regular'
*/
blurType?: BlurType;
/**
* The blur amount/intensity (0-100)
* @default 100
*/
blurAmount?: number;
/**
* Fallback color when reduced transparency is enabled
* @default '#FFFFFF'
*/
reducedTransparencyFallbackColor?: string;
/**
* Style applied to the blur view
*/
style?: ViewStyle;
/**
* Child components to render on top of the blur
*/
children?: React.ReactNode;
}
export declare const BlurView: React.FC<BlurViewProps>;
export default BlurView;
//# sourceMappingURL=index.d.ts.map