Files
NotionNext/themes/gitbook/components/Card.js
2023-06-23 10:41:43 +08:00

10 lines
278 B
JavaScript

const Card = ({ children, headerSlot, className }) => {
return <div className={className}>
<>{headerSlot}</>
<section className="shadow px-2 py-4 bg-white dark:bg-gray-800 hover:shadow-xl duration-200">
{children}
</section>
</div>
}
export default Card