reports create, refactoring

This commit is contained in:
kurpfish
2021-11-30 16:00:58 +02:00
parent 76c46067ef
commit 4629bc74a9
61 changed files with 26047 additions and 3865 deletions

View File

@ -1,15 +1,10 @@
import SVGLoader from "react-loader-spinner";
import './loader.css'
import SVGLoader from 'react-loader-spinner'
import './loader.scss'
export const Loader = ({ width=50, height=50 }) => {
return (
<div className='loader'>
<SVGLoader
type="Circles"
color="#fff"
height={height}
width={width}
/>
</div>
);
}
export const Loader = ({ width = 50, height = 50 }) => {
return (
<div className='loader'>
<SVGLoader type='Circles' color='#fff' height={height} width={width} />
</div>
)
}

View File

@ -1,11 +0,0 @@
.loader {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.loader:hover path {
fill: #6aaf5c;
}

View File

@ -0,0 +1,13 @@
.loader {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
&:hover {
path {
fill: #6aaf5c;
}
}
}