tracker-connect
This commit is contained in:
		@@ -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>
 | 
			
		||||
  )
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user