import { cn } from "./utils"; interface BorderBeamProps { className?: string; size?: number; duration?: number; borderWidth?: number; colorFrom?: string; colorTo?: string; delay?: number; } export const BorderBeam = ({ className, size = 200, duration = 8, borderWidth = 2, colorFrom = "#E5195E", colorTo = "#ffffff", delay = 0, }: BorderBeamProps) => { return (
); };