PageLoading.tsx 360 B

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