12 lines
289 B
JavaScript
12 lines
289 B
JavaScript
import SVGLoader from 'react-loader-spinner'
|
|
import './loader.scss'
|
|
import React from "react";
|
|
|
|
export const Loader = ({ width = 50, height = 50 }) => {
|
|
return (
|
|
<div className='loader'>
|
|
<SVGLoader type='Circles' color='#fff' height={height} width={width} />
|
|
</div>
|
|
)
|
|
};
|