CM: Swap key and value colors in the edit view information box

This commit is contained in:
Gustav Hansen 2023-01-19 14:19:55 +01:00
parent 43c26242c6
commit 4f62675322

View File

@ -11,8 +11,10 @@ import { getFullName } from '../../../../utils';
const KeyValuePair = ({ label, value }) => {
return (
<Flex justifyContent="space-between" as="p">
<Typography fontWeight="bold">{label}</Typography>
<Typography textColor="neutral600">{value}</Typography>
<Typography fontWeight="bold" textColor="neutral600">
{label}
</Typography>
<Typography>{value}</Typography>
</Flex>
);
};