style.ts
349 Bytes
import { StyleSheet } from 'react-native'
import { setUnit } from '../../libs/utils'
import { Alert } from '../../theme/colors'
const styles = StyleSheet.create({
content: {
color: Alert.content,
fontSize: setUnit(30)
},
privacy: {
color: Alert.privacy,
fontSize: setUnit(30)
}
})
export { styles }