themed-styler 1.2.10

Client-side runtime styling engine for web and Android/iOS Native with theme support and Tailwind subset
Documentation
1
2
3
4
5
6
7
8
9
import React from 'react'
import { TSDiv } from './components/TSDiv'

export const SafeAreaView = (props: any) => <TSDiv tag="main" {...props} />
export const ScrollView = (props: any) => <TSDiv tag="div" {...props} />
export const Text = (props: any) => <TSDiv tag="span" {...props} />
export const TextInput = (props: any) => <TSDiv tag="input" {...props} />
export const TouchableOpacity = (props: any) => <TSDiv tag="button" {...props} />
export const View = (props: any) => <TSDiv tag="div" {...props} />