mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-16 15:09:28 +00:00
10 lines
358 B
JavaScript
10 lines
358 B
JavaScript
const Card = ({ children, headerSlot, className }) => {
|
|
return <div className={className}>
|
|
<>{headerSlot}</>
|
|
<section className="shadow-md hover:shadow-xl dark:text-gray-300 border border-gray-100 dark:border-gray-700 rounded-xl px-2 py-4 bg-white dark:bg-gray-800 lg:duration-100">
|
|
{children}
|
|
</section>
|
|
</div>
|
|
}
|
|
export default Card
|