You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Drift/client/app/components/skeleton/index.tsx

12 lines
239 B
TypeScript

import styles from "./skeleton.module.css"
export default function Skeleton({
width = 100,
height = 24
}: {
width?: number | string
height?: number | string
}) {
return <div className={styles.skeleton} style={{ width, height }} />
}