File size: 574 Bytes
5e93a53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Skeleton, Stack } from "@mantine/core";

export default function TextResultsLoadingState() {
  return (
    <Stack>
      <Stack>
        <Skeleton height={8} radius="xl" />
        <Skeleton height={8} width="87%" radius="xl" />
        <Skeleton height={8} radius="xl" />
        <Skeleton height={8} width="70%" radius="xl" />
        <Skeleton height={8} radius="xl" />
        <Skeleton height={8} width="52%" radius="xl" />
        <Skeleton height={8} radius="xl" />
        <Skeleton height={8} width="63%" radius="xl" />
      </Stack>
    </Stack>
  );
}