PageLoading.tsx 403 B

12345678910111213141516171819
  1. import { Flex } from "rebass/styled-components";
  2. import React from "react";
  3. import { Colors } from "../consts";
  4. import Icon from "./Icon";
  5. const PageLoading = () => (
  6. <Flex
  7. flex="1 1 250px"
  8. alignItems="center"
  9. alignSelf="center"
  10. justifyContent="center"
  11. margin="0 0 48px"
  12. >
  13. <Icon name="spinner" size={24} stroke={Colors.Spinner} />
  14. </Flex>
  15. );
  16. export default PageLoading;