import { BlurView } from 'expo-blur'; import { ReactNode } from 'react'; import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import useColorScheme from '../../hooks/colorScheme'; type GlassmorphismCCProps = { children?: ReactNode; style?: StyleProp; }; const GlassmorphismCC = ({ children, style }: GlassmorphismCCProps) => { const colorScheme = useColorScheme(); return ( {children} ); }; export default GlassmorphismCC;