mirror of
https://github.com/FranP-code/Open-Telegram-to-Notion-Website.git
synced 2025-10-13 00:42:53 +00:00
31 lines
581 B
JavaScript
31 lines
581 B
JavaScript
import React from 'react'
|
|
import styled from 'styled-components'
|
|
import {DotSpinner} from '@uiball/loaders'
|
|
|
|
const Loading = () => {
|
|
|
|
const Styles = styled.div`
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-bottom: 20vh;
|
|
|
|
* {
|
|
width: 10vw !important;
|
|
height: 10vw !important;
|
|
}
|
|
`
|
|
return (
|
|
<Styles>
|
|
<DotSpinner color="#4797ff"/>
|
|
</Styles>
|
|
)
|
|
}
|
|
|
|
export default Loading |