Tom Kirkpatrick
6 years ago
No known key found for this signature in database
GPG Key ID: 72203A8EC5967EA8
1 changed files with
2 additions and
2 deletions
-
app/components/UI/DataRow.js
|
|
@ -5,10 +5,10 @@ import { Text } from 'components/UI' |
|
|
|
|
|
|
|
const DataRow = ({ left, right, ...rest }) => ( |
|
|
|
<Flex alignItems="center" py={3} {...rest} justifyContent="space-between"> |
|
|
|
<Text width={2 / 5} fontWeight="normal"> |
|
|
|
<Text width={1 / 2} fontWeight="normal"> |
|
|
|
{left} |
|
|
|
</Text> |
|
|
|
<Text width={3 / 5} textAlign="right"> |
|
|
|
<Text width={1 / 2} textAlign="right"> |
|
|
|
{right} |
|
|
|
</Text> |
|
|
|
</Flex> |
|
|
|