Files
lixiyu-net/components/readerpage/PostCover.tsx
2023-12-25 17:21:39 +08:00

15 lines
369 B
TypeScript

export const PostCover = (props: { coverURL: string }) => {
return (
<div
className="mb-8 mt-0 flex w-full justify-center rounded-xl"
style={{
aspectRatio: "5/2",
background: `url(${props.coverURL})`,
backgroundSize: "cover",
backgroundRepeat: "no-repeat",
backgroundPosition: "center",
}}
/>
);
};