From 6454dc7d07175bd782af866a8a2628a571769192 Mon Sep 17 00:00:00 2001 From: fgrreloaded Date: Sun, 16 Feb 2025 23:10:17 +0530 Subject: [PATCH] remove border beam file --- apps/web/components/BorderBeam.tsx | 94 ------------------------------ 1 file changed, 94 deletions(-) delete mode 100644 apps/web/components/BorderBeam.tsx diff --git a/apps/web/components/BorderBeam.tsx b/apps/web/components/BorderBeam.tsx deleted file mode 100644 index 80a51d8..0000000 --- a/apps/web/components/BorderBeam.tsx +++ /dev/null @@ -1,94 +0,0 @@ -"use client"; - -import { cn } from "@/lib/utils"; -import { type MotionStyle, type Transition, motion } from "motion/react"; - -interface BorderBeamProps { - /** - * The size of the border beam. - */ - size?: number; - /** - * The duration of the border beam. - */ - duration?: number; - /** - * The delay of the border beam. - */ - delay?: number; - /** - * The color of the border beam from. - */ - colorFrom?: string; - /** - * The color of the border beam to. - */ - colorTo?: string; - /** - * The motion transition of the border beam. - */ - transition?: Transition; - /** - * The class name of the border beam. - */ - className?: string; - /** - * The style of the border beam. - */ - style?: React.CSSProperties; - /** - * Whether to reverse the animation direction. - */ - reverse?: boolean; - /** - * The initial offset position (0-100). - */ - initialOffset?: number; -} - -export const BorderBeam = ({ - className, - size = 50, - delay = 0, - duration = 6, - colorFrom = "#ffaa40", - colorTo = "#9c40ff", - transition, - style, - reverse = false, - initialOffset = 0, -}: BorderBeamProps) => { - return ( -
- -
- ); -};