themed-styler 0.2.1

Client-side runtime styling engine for web and React Native with theme support and Tailwind subset
Documentation
import { styled } from './themedRuntime'
if (typeof styled !== 'function') {
    console.warn('[themedPrimitives] styled export is not a function:', styled)
}
import {
    SafeAreaView as RNSafeAreaView,
    ScrollView as RNScrollView,
    Text as RNText,
    TouchableOpacity as RNTouchableOpacity,
    View as RNView,
    TextInput as RNTextInput,
} from 'react-native'

export const SafeAreaView = styled(RNSafeAreaView)
export const ScrollView = styled(RNScrollView)
export const Text = styled(RNText)
export const TextInput = styled(RNTextInput)
export const TouchableOpacity = styled(RNTouchableOpacity)
export const View = styled(RNView)