style.ts 378 Bytes
import { StyleSheet } from 'react-native'
import { setUnit } from '../../../libs/utils'
import { View, desc } from '../../../theme/colors'

const styles = StyleSheet.create({
    container: {
        backgroundColor: View.background,
        flex: 1,
        padding: setUnit(32)
    },
    desc: {
        color: desc,
        fontSize: setUnit(24)
    }
})

export { styles }