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