17 lines
462 B
TypeScript
17 lines
462 B
TypeScript
import React from 'react';
|
|
const OpenReplayPreloader = require('../../svg/openreplay-preloader.svg').default
|
|
|
|
interface ORLoaderProps {
|
|
width?: string;
|
|
height?: string;
|
|
}
|
|
|
|
const ORLoader: React.FC<ORLoaderProps> = ({ width = '50px', height = '50px' }) => {
|
|
return (
|
|
<div className="or-loader" style={{ width, height }}>
|
|
<img src={OpenReplayPreloader} alt="Loading..." width={width} height={height} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ORLoader;
|