import React from 'react'; interface CyberPanelProps { children?: React.ReactNode; className?: string; } export const CyberPanel: React.FC = ({ children, className = "" }) => (
{/* Decorative Corners */} {/* Inner Content */}
{children}
);