фиксы

This commit is contained in:
2023-01-18 17:37:52 +03:00
parent 2a8c26c3c6
commit 642a8a9641
13 changed files with 387 additions and 358 deletions

View File

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