mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 23:16:48 +00:00
10 lines
346 B
JavaScript
10 lines
346 B
JavaScript
const Card = ({ children, headerSlot, className }) => {
|
|
return <div data-aos="fade-in" data-aos-duration="1000" className={className}>
|
|
<>{headerSlot}</>
|
|
<section className="shadow mb-4 p-2 bg-white dark:bg-hexo-black-gray hover:shadow-lg duration-200">
|
|
{children}
|
|
</section>
|
|
</div>
|
|
}
|
|
export default Card
|