2022-04-09 17:48:19 -07:00
|
|
|
import Skeleton from "react-loading-skeleton"
|
|
|
|
import { Card, Divider, Grid, Spacer } from "@geist-ui/core"
|
2022-03-22 20:06:15 -07:00
|
|
|
|
2022-04-09 17:48:19 -07:00
|
|
|
const ListItemSkeleton = () => (
|
|
|
|
<Card>
|
|
|
|
<Spacer height={1 / 2} />
|
|
|
|
<Grid.Container justify={"space-between"} marginBottom={1 / 2}>
|
|
|
|
<Grid xs={8} paddingLeft={1 / 2}>
|
|
|
|
<Skeleton width={150} />
|
|
|
|
</Grid>
|
|
|
|
<Grid xs={7}>
|
|
|
|
<Skeleton width={100} />
|
|
|
|
</Grid>
|
|
|
|
<Grid xs={4}>
|
|
|
|
<Skeleton width={70} />
|
|
|
|
</Grid>
|
|
|
|
</Grid.Container>
|
2022-03-21 20:30:45 -07:00
|
|
|
|
2022-04-09 17:48:19 -07:00
|
|
|
<Divider h="1px" my={0} />
|
2022-03-09 17:11:37 -08:00
|
|
|
|
2022-04-09 17:48:19 -07:00
|
|
|
<Card.Content>
|
|
|
|
<Skeleton width={200} />
|
|
|
|
</Card.Content>
|
|
|
|
</Card>
|
|
|
|
)
|
2022-03-09 17:11:37 -08:00
|
|
|
|
2022-04-09 17:48:19 -07:00
|
|
|
export default ListItemSkeleton
|