Files
NotionNext/themes/next/components/Card.js
2022-04-02 10:15:37 +08:00

10 lines
285 B
JavaScript

const Card = ({ children, headerSlot, className }) => {
return <div className={className}>
<>{headerSlot}</>
<section className="shadow px-2 py-4 bg-white dark:bg-hexo-black-gray hover:shadow-xl duration-200">
{children}
</section>
</div>
}
export default Card