import { StyleSheet } from 'react-native'; export const snackbarTexts = StyleSheet.create({ basic: { textAlign: 'center', }, primary: { color: '#101010', }, secondary: { color: 'white', }, outline: { color: '#101010', }, success: { color: 'white', }, danger: { color: 'white', }, }); export const layout = StyleSheet.create({ container: { minWidth: 240, width: '100%', }, innerBorders: { flexDirection: 'row', justifyContent: 'space-between', paddingVertical: 4 * 3, paddingHorizontal: 4 * 4, }, });