native/src/components/HighlightBox.tsx
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