Files
NotionNext/themes/hexo/components/Card.js
tangly1024 f94bcde757 performance
2023-03-11 12:33:21 +08:00

10 lines
346 B
JavaScript

const Card = ({ children, headerSlot, className }) => {
return <div className={className}>
<>{headerSlot}</>
<section className="shadow-md hover:shadow-md dark:text-gray-300 border dark:border-black rounded-xl px-2 py-4 bg-white dark:bg-hexo-black-gray lg:duration-100">
{children}
</section>
</div>
}
export default Card