mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-13 15:09:13 +00:00
10 lines
260 B
JavaScript
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
|