File size: 346 Bytes
1b72d7e
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
const Card = ({ children, headerSlot, className }) => {
  return <div data-aos="fade-in" data-aos-duration="1000" className={className}>
        <>{headerSlot}</>
        <section className="shadow mb-4 p-2 bg-white dark:bg-hexo-black-gray hover:shadow-lg duration-200">
            {children}
        </section>
    </div>
}
export default Card