sandy-try's picture
Upload 699 files
1b72d7e verified
raw
history blame contribute delete
260 Bytes
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