Files
NotionNext/themes/next/components/Card.js
tangly1024.com e4c964e7b9 Next 主题优化
2023-05-23 14:49:48 +08:00

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