Files
NotionNext/themes/fukasawa/components/Card.js
2022-05-12 12:24:05 +08:00

10 lines
284 B
JavaScript

const Card = ({ children, headerSlot, className }) => {
return <div 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