import { cn } from '../../lib/utils'; interface FresnelEdgeProps { children: React.ReactNode; className?: string; edgeColor?: string; glowStrength?: number; } /** * Fresnel edge effect - glowing 1px edges on glass objects * Creates the "light catching" effect seen on premium glass surfaces */ export function FresnelEdge({ children, className, edgeColor = 'rgba(255, 255, 255, 0.15)', glowStrength = 0.5, }: FresnelEdgeProps) { return (