Upgrade pf react-core to 2.9.2

This commit is contained in:
mabashian
2019-03-26 11:47:01 -04:00
parent 1cb2a95a47
commit 9b314a6f2f
3 changed files with 42 additions and 40 deletions

View File

@@ -1,16 +1,19 @@
import React from 'react';
const VerticalSeparator = () => (
<span style={{
content: '',
backgroundColor: '#d7d7d7',
width: '1px',
height: '30px',
display: 'block',
marginLeft: '20px',
marginRight: '20px'
}}
/>
<div>
<span style={{
content: '',
backgroundColor: '#d7d7d7',
width: '1px',
height: '30px',
display: 'inline-block',
verticalAlign: 'middle',
marginLeft: '20px',
marginRight: '20px'
}}
/>
</div>
);
export default VerticalSeparator;