mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 23:16:49 +00:00
16 lines
382 B
JavaScript
16 lines
382 B
JavaScript
/**
|
|
* 卡片组件
|
|
* @param {*} param0
|
|
* @returns
|
|
*/
|
|
const Card = (props) => {
|
|
const { children, headerSlot, className } = props
|
|
return <div className={className}>
|
|
<>{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
|