-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OpenConceptLab/ocl_issues#2023 | Matching component with row states a…
…nd repo select
- Loading branch information
1 parent
e2a1971
commit b50ab55
Showing
13 changed files
with
1,840 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import React from 'react'; | ||
import { Box, LinearProgress } from '@mui/material' | ||
import { BLACK } from '../../common/colors' | ||
|
||
const AutocompleteLoading = ({ text }) => { | ||
|
||
return ( | ||
<React.Fragment> | ||
<Box sx={{ width: '100%', margin: '20px 0', display: 'flex', alignItems: 'center', justifyContent: 'center', flexDirection: 'column' }}> | ||
{ | ||
text && | ||
<div className='col-xs-12' style={{width: '100%', textAlign: 'center', marginBottom: '10px', color: BLACK}}> | ||
Loading results for <b>{ text }</b> | ||
</div> | ||
} | ||
<div className='col-xs-8'> | ||
<LinearProgress /> | ||
</div> | ||
</Box> | ||
|
||
</React.Fragment> | ||
) | ||
} | ||
|
||
export default AutocompleteLoading; |
Oops, something went wrong.