import * as React from 'react'; import { View } from 'react-native'; import { useThemeContext } from '../../theme'; export type ShadowViewProps = React.PropsWithChildren<{}>; export function ShadowView(props: ShadowViewProps) { const { children } = props; const { shadow } = useThemeContext(); return ( {children} ); }