mirror of
https://github.com/FranP-code/Open-Telegram-to-Notion-Website.git
synced 2025-10-13 00:42:53 +00:00
Auth page done
This commit is contained in:
31
src/components/Loading/Loading.jsx
Normal file
31
src/components/Loading/Loading.jsx
Normal file
@@ -0,0 +1,31 @@
|
||||
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
|
||||
Reference in New Issue
Block a user