tracker-connect

This commit is contained in:
2023-05-05 00:50:48 +03:00
parent 2fec7f4d28
commit d8a7eb55f5
8 changed files with 177 additions and 129 deletions

View File

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