mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-17 07:26:46 +00:00
16 lines
481 B
JavaScript
16 lines
481 B
JavaScript
const Card = ({ children, headerSlot, className }) => {
|
|
return <div className={className}
|
|
data-aos="fade-up"
|
|
data-aos-duration="600"
|
|
data-aos-easing="ease-in-out"
|
|
data-aos-once="false"
|
|
data-aos-anchor-placement="top-bottom"
|
|
>
|
|
<>{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
|