mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 09:32:29 +01:00
15 lines
627 B
TypeScript
15 lines
627 B
TypeScript
import React from 'react';
|
|
import classNames from 'classnames';
|
|
import { CSSTransition } from 'react-transition-group';
|
|
|
|
export default ({ large, visible }: { visible: boolean; large?: boolean }) => (
|
|
<CSSTransition timeout={150} classNames={'fade'} in={visible} unmountOnExit={true}>
|
|
<div
|
|
className={classNames('absolute pin-t pin-l flex items-center justify-center w-full h-full rounded')}
|
|
style={{ background: 'rgba(0, 0, 0, 0.45)' }}
|
|
>
|
|
<div className={classNames('spinner-circle spinner-white', { 'spinner-lg': large })}></div>
|
|
</div>
|
|
</CSSTransition>
|
|
);
|