mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 06:34:39 -04:00
18 lines
489 B
TypeScript
18 lines
489 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { ForkAwesomeIcon } from '../fork-awesome/fork-awesome-icon'
|
|
import React from 'react'
|
|
|
|
/**
|
|
* Renders a indefinitely spinning spinner.
|
|
*/
|
|
export const WaitSpinner: React.FC = () => {
|
|
return (
|
|
<div className={'m-3 d-flex align-items-center justify-content-center'}>
|
|
<ForkAwesomeIcon icon={'spinner'} className={'fa-spin'} />
|
|
</div>
|
|
)
|
|
}
|