/**
 * Theme map
 */

import { StyleSheet } from 'react-native';
import { Colors } from '../Colors';

export const MinimizedViewTheme = StyleSheet.create({
  view: {
    padding: 16,
    backgroundColor: Colors.primary[100],
    display: 'flex',
    flexDirection: 'row',
    flexWrap: 'nowrap',
    justifyContent: 'space-between',
  },

  flex: {
    alignSelf: 'flex-start',
  },
});
