n4kz/react-native-pages

View on GitHub
src/components/indicator/styles.js

Summary

Maintainability
A
0 mins
Test Coverage
import { StyleSheet } from 'react-native';

export default StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    margin: 4,
  },

  dot: {
    backgroundColor: 'white',
    borderRadius: 4,
    width: 8,
    height: 8,
    margin: 4,
  },
});