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