Files
NotionNext/themes/heo/components/Card.js
tangly1024.com 99bd4f3c99 theme-heo
2023-07-12 18:57:23 +08:00

10 lines
239 B
JavaScript

const Card = ({ children, headerSlot, className }) => {
return <div className={`${className || ''} card border rounded-xl lg:p-6 p-4`}>
<>{headerSlot}</>
<section>
{children}
</section>
</div>
}
export default Card