digitalfabrik/integreat-app

View on GitHub
native/src/components/HighlightBox.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import styled from 'styled-components/native'

const HighlightBox = styled.View`
  background-color: ${props => props.theme.colors.backgroundAccentColor};
  elevation: 1;
  shadow-color: ${props => props.theme.colors.textColor};
  shadow-offset: 0 1px;
  shadow-opacity: 0.2;
  shadow-radius: 1px;
`

export default HighlightBox