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