mirror of
https://github.com/ansible/awx.git
synced 2026-01-28 00:51:27 -03:30
* make all chips the same size * create DetailList, Detail components; clean up Chips, ChipGroup * delete BasicChip in favor of <Chip isReadOnly> * create our own ChipGroup to handle overflow
21 lines
363 B
JavaScript
21 lines
363 B
JavaScript
import React from 'react';
|
|
import styled from 'styled-components';
|
|
|
|
const Separator = styled.span`
|
|
display: inline-block;
|
|
width: 1px;
|
|
height: 30px;
|
|
margin-right: 20px;
|
|
margin-left: 20px;
|
|
background-color: #d7d7d7;
|
|
vertical-align: middle;
|
|
`;
|
|
|
|
const VerticalSeparator = () => (
|
|
<div>
|
|
<Separator />
|
|
</div>
|
|
);
|
|
|
|
export default VerticalSeparator;
|