petrogad/react-native-materialui-textfield

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

Summary

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

export default StyleSheet.create({
  line: {
    position: 'absolute',

    ...Platform.select({
      android: { borderRadius: Number.EPSILON },
    }),
  },
});