@themesberg/volt-react-dashboard
Version:
Volt React Dashboard is a free and open source admin dashboard template powered by React.js and Bootstrap 5
17 lines (11 loc) • 477 B
JavaScript
import React from 'react';
import { Image } from '@themesberg/react-bootstrap';
import ReactLogo from "../assets/img/technologies/react-logo-transparent.svg";
export default (props) => {
const { show } = props;
return (
<div className={`preloader bg-soft flex-column justify-content-center align-items-center ${show ? "" : "show"}`}>
<Image className="loader-element animate__animated animate__jackInTheBox" src={ReactLogo} height={40} />
</div>
);
};