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