mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-16 07:26:47 +00:00
15 lines
443 B
JavaScript
15 lines
443 B
JavaScript
const Card = ({ children, headerSlot, className }) => {
|
|
return <div className={className}
|
|
data-aos="fade-up"
|
|
data-aos-duration="300"
|
|
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
|