digitalfabrik/integreat-app

View on GitHub
native/src/components/base/ItemSeparator.ts

Summary

Maintainability
A
0 mins
Test Coverage
B
80%
import { StyleSheet } from 'react-native'
import styled from 'styled-components/native'

const ItemSeparator = styled.View`
  background-color: ${props => props.theme.colors.textDecorationColor};
  height: ${StyleSheet.hairlineWidth}px;
`

export default ItemSeparator