Skip to content

Instantly share code, notes, and snippets.

@dutradotdev
dutradotdev / .tsx
Last active May 31, 2024 02:16
BlurContainer in React Native
import React from 'react';
import WebView from 'react-native-webview';
export type RGBA = `rgba(${number}, ${number}, ${number}, ${number})`;
export interface BlurContainerProps {
backgroundColor: RGBA;
blurRadius: number;
}