mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 06:01:25 -03:30
20 lines
359 B
JavaScript
20 lines
359 B
JavaScript
import React from 'react';
|
|
|
|
const VerticalSeparator = () => (
|
|
<div>
|
|
<span style={{
|
|
content: '',
|
|
backgroundColor: '#d7d7d7',
|
|
width: '1px',
|
|
height: '30px',
|
|
display: 'inline-block',
|
|
verticalAlign: 'middle',
|
|
marginLeft: '20px',
|
|
marginRight: '20px'
|
|
}}
|
|
/>
|
|
</div>
|
|
);
|
|
|
|
export default VerticalSeparator;
|