import { cn } from "@/lib/utils"; interface BorderBeamProps { className?: string; size?: number; duration?: number; borderWidth?: number; anchor?: number; colorFrom?: string; colorTo?: string; delay?: number; } export const BorderBeam = ({ className, size = 200, duration = 15, anchor = 90, borderWidth = 1.5, colorFrom = "#8803AF", colorTo = "#61DAFB", delay = 0 }: BorderBeamProps) => { return (
); };