mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
21 lines
391 B
JavaScript
21 lines
391 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import classNames from 'classnames';
|
|
import styles from './Loading.module.css';
|
|
|
|
function Loading({ className }) {
|
|
return (
|
|
<div className={classNames(styles.loading, className)}>
|
|
<div />
|
|
<div />
|
|
<div />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
Loading.propTypes = {
|
|
className: PropTypes.string,
|
|
};
|
|
|
|
export default Loading;
|