1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

node editing saga

This commit is contained in:
Fedor Katurov 2019-10-22 12:31:59 +07:00
parent 249a9b368c
commit f71be36520
6 changed files with 50 additions and 13 deletions

View 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 };

View file

@ -0,0 +1,11 @@
.wrap {
height: 200px;
display: flex;
align-items: center;
justify-content: center;
svg {
fill: white;
opacity: 0.5;
}
}