(
({ children, variant = 'gold', cornerStyle = 'simple', glow = false, padding = 'md', className = '', ...props }, ref) => {
const colors = variantStyles[variant];
const cornerSize = cornerStyle === 'ornate' ? 'w-10 h-10' : cornerStyle === 'extended' ? 'w-[30px] h-[30px]' : 'w-5 h-5';
return (
{/* Corners */}
{/* Ornate decorations */}
{cornerStyle === 'ornate' && (
<>
✦
✦
>
)}
{children}
);
}
);
VoidFrame.displayName = 'VoidFrame';
export default VoidFrame;