File size: 260 Bytes
1b72d7e
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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