style.ts
323 Bytes
import { StyleSheet } from 'react-native'
import { setUnit } from '../../../libs/utils'
const styles = StyleSheet.create({
container: {
flex: 1,
padding: setUnit(32),
backgroundColor: '#fff'
},
desc: {
color: '#434343',
fontSize: setUnit(24)
}
})
export { styles }