You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
overseerr/src/components/TitleCard/Placeholder.tsx

12 lines
287 B

import React from 'react';
const Placeholder: React.FC = () => {
return (
<div className="relative animate-pulse rounded-lg bg-cool-gray-700 w-36 sm:w-36 md:w-44 ">
<div className="w-full" style={{ paddingBottom: '150%' }} />
</div>
);
};
export default Placeholder;