import { forwardRef } from 'react'; import { View } from 'react-native'; import { useTheme } from '../../hooks'; import type { StyledViewProps } from '../../types'; const StyledView = forwardRef(({ f, justify, align, fWrap, bg, themeBg = false, h, w, children, style, ...rest }, ref) => { const theme = useTheme(); return ( {children} ); }); export default StyledView; export type { StyledViewProps };