Files
lixiyu-net/components/reader-page/PostCover.tsx

15 lines
369 B
TypeScript
Raw Normal View History

2023-12-25 17:21:39 +08:00
export const PostCover = (props: { coverURL: string }) => {
return (
<div
className="mt-0 mb-8 flex w-full justify-center rounded-md"
2023-12-25 17:21:39 +08:00
style={{
aspectRatio: "5/1",
2023-12-25 17:21:39 +08:00
background: `url(${props.coverURL})`,
backgroundSize: "cover",
backgroundRepeat: "no-repeat",
backgroundPosition: "center",
}}
/>
);
};