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