7 lines
237 B
JavaScript
7 lines
237 B
JavaScript
const MediaItemSkeleton = () => {
|
|
return (
|
|
<div className="aspect-[9/16] w-full rounded-lg bg-gradient-to-r from-muted via-background to-muted bg-[length:200%_100%] animate-shimmer" />
|
|
);
|
|
};
|
|
|
|
export { MediaItemSkeleton }; |