mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
node editing saga
This commit is contained in:
parent
249a9b368c
commit
f71be36520
6 changed files with 50 additions and 13 deletions
11
src/containers/dialogs/LoadingDialog/index.tsx
Normal file
11
src/containers/dialogs/LoadingDialog/index.tsx
Normal file
|
@ -0,0 +1,11 @@
|
|||
import React, { FC } from 'react';
|
||||
import { LoaderCircle } from '~/components/input/LoaderCircle';
|
||||
import * as styles from './styles.scss';
|
||||
|
||||
const LoadingDialog: FC<{}> = () => (
|
||||
<div className={styles.wrap}>
|
||||
<LoaderCircle size={64} />
|
||||
</div>
|
||||
);
|
||||
|
||||
export { LoadingDialog };
|
11
src/containers/dialogs/LoadingDialog/styles.scss
Normal file
11
src/containers/dialogs/LoadingDialog/styles.scss
Normal file
|
@ -0,0 +1,11 @@
|
|||
.wrap {
|
||||
height: 200px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
svg {
|
||||
fill: white;
|
||||
opacity: 0.5;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue