CoastalCommitsPastes/client/app/components/post-list/list-item-skeleton.tsx

26 lines
587 B
TypeScript
Raw Normal View History

import Card from "@components/card"
import Skeleton from "@components/skeleton"
import { Divider, Grid, Spacer } from "@geist-ui/core/dist"
2022-04-09 20:48:19 -04: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-04-09 20:48:19 -04:00
<Divider h="1px" my={0} />
<Skeleton width={200} />
2022-04-09 20:48:19 -04:00
</Card>
)
2022-03-09 20:11:37 -05:00
2022-04-09 20:48:19 -04:00
export default ListItemSkeleton