FPSMS-frontend
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

41 linhas
1.1 KiB

  1. import Card from "@mui/material/Card";
  2. import CardContent from "@mui/material/CardContent";
  3. import Skeleton from "@mui/material/Skeleton";
  4. import Stack from "@mui/material/Stack";
  5. import React from "react";
  6. // Can make this nicer
  7. export const EditUserLoading: React.FC = () => {
  8. return (
  9. <>
  10. <Card>
  11. <CardContent>
  12. <Stack spacing={2}>
  13. <Skeleton variant="rounded" height={60} />
  14. <Skeleton variant="rounded" height={60} />
  15. <Skeleton variant="rounded" height={60} />
  16. <Skeleton
  17. variant="rounded"
  18. height={50}
  19. width={100}
  20. sx={{ alignSelf: "flex-end" }}
  21. />
  22. </Stack>
  23. </CardContent>
  24. </Card>
  25. <Card>EditUser
  26. <CardContent>
  27. <Stack spacing={2}>
  28. <Skeleton variant="rounded" height={40} />
  29. <Skeleton variant="rounded" height={40} />
  30. <Skeleton variant="rounded" height={40} />
  31. <Skeleton variant="rounded" height={40} />
  32. </Stack>
  33. </CardContent>
  34. </Card>
  35. </>
  36. );
  37. };
  38. export default EditUserLoading;