src/components/card-4.tsximport React from 'react'import { clsx } from 'clsx'interface Card4Props {children: React.ReactNodeclassName?: stringrounded?: stringbgColor?: stringborder?: stringshadow?: stringpadding?: stringmargin?: string}export function Card4({children,className,rounded = 'rounded-xl',bgColor = 'bg-body2',border = 'border border-accent/10',shadow = 'shadow-lg',padding = 'p-10 md:p-10',margin,}: Card4Props) {return (<divclassName={clsx(rounded,bgColor,border,shadow,padding,margin,className)}>{children}</div>)}