mirror of
https://github.com/ansible/awx.git
synced 2026-03-03 09:48:51 -03:30
Add Organization Details view and test
This commit is contained in:
13
src/components/BasicChip/BasicChip.jsx
Normal file
13
src/components/BasicChip/BasicChip.jsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import React from 'react';
|
||||
import { Chip } from '@patternfly/react-core';
|
||||
import './basicChip.scss';
|
||||
|
||||
const BasicChip = ({ text }) => (
|
||||
<Chip
|
||||
className="awx-c-chip--basic"
|
||||
>
|
||||
{text}
|
||||
</Chip>
|
||||
);
|
||||
|
||||
export default BasicChip;
|
||||
10
src/components/BasicChip/basicChip.scss
Normal file
10
src/components/BasicChip/basicChip.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
.awx-c-chip--basic {
|
||||
padding: 6px 8px;
|
||||
height: 30px;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 10px;
|
||||
|
||||
.pf-c-button {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user