2022-11-28 18:33:06 -08:00
|
|
|
import styles from "./list-item.module.css"
|
2022-11-15 19:07:07 -08:00
|
|
|
import Card from "@components/card"
|
2022-11-13 23:02:31 -08:00
|
|
|
import Skeleton from "@components/skeleton"
|
2022-03-22 20:06:15 -07:00
|
|
|
|
2022-11-28 18:33:06 -08:00
|
|
|
export const ListItemSkeleton = () => (
|
|
|
|
<li>
|
|
|
|
<Card style={{ overflowY: "scroll" }}>
|
|
|
|
<>
|
|
|
|
<div className={styles.title}>
|
|
|
|
{/* title */}
|
|
|
|
<Skeleton width={80} height={32} />
|
|
|
|
</div>
|
2022-03-21 20:30:45 -07:00
|
|
|
|
2022-11-28 18:33:06 -08:00
|
|
|
<div className={styles.badges}>
|
|
|
|
<Skeleton width={30} height={32} />
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
<hr />
|
|
|
|
<Skeleton width={100} height={32} />
|
|
|
|
</Card>
|
|
|
|
</li>
|
2022-04-09 17:48:19 -07:00
|
|
|
)
|