mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 15:09:25 +00:00
11 lines
285 B
JavaScript
11 lines
285 B
JavaScript
const Card = (props) => {
|
|
const { children, headerSlot } = props
|
|
return <div {...props}>
|
|
<>{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
|