Files
SerpentRace/SerpentRace_Frontend/src/components/Card/Card.jsx
T

20 lines
561 B
React
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from "react";
export default function Card({ title, children, onClose }) {
return (
<div className="relative bg-white rounded-xl shadow-lg p-6 w-[400px] h-[300px]">
<button
onClick={onClose}
className="absolute top-2 right-2 text-gray-500 hover:text-black text-xl font-bold leading-none"
aria-label="Close"
>
×
</button>
{title && <h2 className="text-xl font-semibold mb-4">{title}</h2>}
<div className="overflow-auto h-[calc(100%-3.5rem)]">{children}</div>
</div>
);
}