mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 23:30:32 +00:00
20 lines
459 B
TypeScript
20 lines
459 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import classNames from 'classnames';
|
|
import { Icon } from '@/components';
|
|
|
|
import '@/style/components/BigcapitalLoading.scss';
|
|
|
|
/**
|
|
* Bigcapital logo loading.
|
|
*/
|
|
export default function BigcapitalLoading({ className }) {
|
|
return (
|
|
<div className={classNames('bigcapital-loading', className)}>
|
|
<div class="center">
|
|
<Icon icon="bigcapital" height={37} width={228} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|