2022-01-06 08:34:16 +00:00
|
|
|
const Loading: React.FC<{ loadingText: string }> = ({ loadingText }) => {
|
2021-06-24 23:42:46 +00:00
|
|
|
return (
|
2021-09-04 14:15:09 +00:00
|
|
|
<div className="dark:text-white flex items-center justify-center py-32 space-x-1 rounded">
|
2021-11-28 11:24:59 +00:00
|
|
|
<LoadingIcon className="animate-spin w-5 h-5 mr-3 -ml-1" />
|
2021-06-24 23:42:46 +00:00
|
|
|
<div>{loadingText}</div>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-11-28 11:24:59 +00:00
|
|
|
// As there is no CSS-in-JS styling system, pass class list to override styles
|
2022-01-06 08:34:16 +00:00
|
|
|
export const LoadingIcon: React.FC<{ className?: string }> = ({ className }) => {
|
2021-11-28 11:24:59 +00:00
|
|
|
return (
|
2021-12-17 05:57:56 +00:00
|
|
|
<svg className={className} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
2021-11-28 11:24:59 +00:00
|
|
|
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4" />
|
|
|
|
<path
|
|
|
|
className="opacity-75"
|
|
|
|
fill="currentColor"
|
|
|
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
|
|
|
|
/>
|
|
|
|
</svg>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-06-24 23:42:46 +00:00
|
|
|
export default Loading
|