customer_css.js 449 B

1234567891011121314151617181920212223
  1. import React from 'react';
  2. import {Dimensions, PixelRatio, StyleSheet} from 'react-native';
  3. const customer_css = StyleSheet.create({
  4. container: {
  5. backgroundColor: 'white',
  6. flex: 1,
  7. },
  8. footer: {
  9. flexDirection: 'row',
  10. height: 24,
  11. justifyContent: 'center',
  12. alignItems: 'center',
  13. marginBottom: 10,
  14. },
  15. actionButtonIcon: {
  16. fontSize: 20,
  17. height: 22,
  18. color: 'white',
  19. },
  20. });
  21. export default customer_css;