styles.tsx 623 B

123456789101112131415161718192021222324252627282930
  1. import { StyleSheet } from 'react-native';
  2. import { Colors } from 'src/theme';
  3. export const styles = StyleSheet.create({
  4. container: {
  5. alignItems: 'center',
  6. justifyContent: 'center',
  7. overflow: 'hidden',
  8. borderColor: Colors.LIGHT_GRAY,
  9. borderWidth: 1
  10. },
  11. avatar: {
  12. width: '100%',
  13. height: '100%'
  14. },
  15. initialsContainer: {
  16. position: 'absolute',
  17. width: '100%',
  18. height: '100%',
  19. justifyContent: 'center',
  20. alignItems: 'center'
  21. },
  22. initials: {
  23. position: 'absolute',
  24. color: Colors.DARK_BLUE,
  25. fontWeight: 'bold',
  26. fontSize: 22,
  27. textAlign: 'center'
  28. }
  29. });