Files
NotionNext/themes/heo/components/Card.js
tangly1024.com f4d54c83f5 theme-heo
2023-07-17 18:39:11 +08:00

10 lines
260 B
JavaScript

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