mirror of
https://github.com/ansible/awx.git
synced 2026-03-04 18:21:03 -03:30
Adds sort to IG modal
This commit is contained in:
16
src/components/VerticalSeparator/VerticalSeparator.jsx
Normal file
16
src/components/VerticalSeparator/VerticalSeparator.jsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import React from 'react';
|
||||
|
||||
const VerticalSeparator = () => (
|
||||
<span style={{
|
||||
content: '',
|
||||
backgroundColor: '#d7d7d7',
|
||||
width: '1px',
|
||||
height: '30px',
|
||||
display: 'block',
|
||||
marginLeft: '20px',
|
||||
marginRight: '20px'
|
||||
}}
|
||||
/>
|
||||
);
|
||||
|
||||
export default VerticalSeparator;
|
||||
3
src/components/VerticalSeparator/index.js
Normal file
3
src/components/VerticalSeparator/index.js
Normal file
@@ -0,0 +1,3 @@
|
||||
import VerticalSeparator from './VerticalSeparator';
|
||||
|
||||
export default VerticalSeparator;
|
||||
Reference in New Issue
Block a user