2022-02-04 00:13:04 +00:00
|
|
|
import clsx from 'clsx'
|
|
|
|
|
|
|
|
export function LoadingIndicator(props: { className?: string }) {
|
|
|
|
const { className } = props
|
|
|
|
|
|
|
|
return (
|
2022-02-11 18:40:22 +00:00
|
|
|
<div className={clsx('flex items-center justify-center', className)}>
|
2022-02-04 00:13:04 +00:00
|
|
|
<div
|
2022-02-11 18:40:22 +00:00
|
|
|
className="spinner-border inline-block h-8 w-8 animate-spin rounded-full border-4 border-solid border-indigo-500 border-r-transparent"
|
2022-02-04 00:13:04 +00:00
|
|
|
role="status"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|