eduardomoroni/mtgx

View on GitHub
src/modules/form/components/styles/multiSelect.styles.js

Summary

Maintainability
A
0 mins
Test Coverage
// @flow

import { StyleSheet } from 'react-native'

export const styles = StyleSheet.create({
  row: {
    flex: 1,
    flexDirection: 'row',
    alignItems: 'center',
    padding: 15,
    borderBottomWidth: 1,
    borderBottomColor: '#cccccc',
    backgroundColor: '#ffffff'
  },
  checkbox: {
    width: 24,
    height: 24,
    marginRight: 5
  },
  label: {}
})