2022-11-13 23:02:31 -08:00
|
|
|
import styles from "./skeleton.module.css"
|
|
|
|
|
|
|
|
export default function Skeleton({
|
2022-11-17 22:36:53 -08:00
|
|
|
width = 100,
|
|
|
|
height = 24
|
2022-11-13 23:02:31 -08:00
|
|
|
}: {
|
2022-11-17 22:36:53 -08:00
|
|
|
width?: number | string
|
|
|
|
height?: number | string
|
2022-11-13 23:02:31 -08:00
|
|
|
}) {
|
2022-11-17 22:36:53 -08:00
|
|
|
return <div className={styles.skeleton} style={{ width, height }} />
|
2022-11-13 23:02:31 -08:00
|
|
|
}
|