diff options
| author | mfoiani <mfoiani@mfoi.dev> | 2026-01-22 23:37:36 -0500 |
|---|---|---|
| committer | mfoiani <mfoiani@mfoi.dev> | 2026-01-22 23:37:36 -0500 |
| commit | 93b7571834819c877ab99d82cb16a7e307d4f66f (patch) | |
| tree | 029f16859cf537bd3a0e05410abc56bcdb806632 /src/components | |
| parent | 3c1605e634e9a3eb637beb2165ca3137045de721 (diff) | |
build ready
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/ui/hover-border-gradient.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/ui/hover-border-gradient.tsx b/src/components/ui/hover-border-gradient.tsx index 898f575..5da06fa 100644 --- a/src/components/ui/hover-border-gradient.tsx +++ b/src/components/ui/hover-border-gradient.tsx @@ -1,5 +1,5 @@ "use client"; -import React, { useState, useEffect, useRef } from "react"; +import React, { useState, useEffect } from "react"; import { motion } from "motion/react"; import { cn } from "@/lib/utils"; @@ -63,21 +63,21 @@ export function HoverBorderGradient({ onMouseLeave={() => setHovered(false)} className={cn( "relative flex rounded-full border border-indigo-300/50 content-center bg-black/20 hover:bg-black/10 transition duration-500 items-center flex-col flex-nowrap gap-10 h-min justify-center overflow-visible p-px decoration-clone w-fit", - containerClassName + containerClassName, )} {...props} > <div className={cn( "w-auto text-white z-10 bg-black px-4 py-2 rounded-[inherit]", - className + className, )} > {children} </div> <motion.div className={cn( - "flex-none inset-0 overflow-hidden absolute z-0 rounded-[inherit]" + "flex-none inset-0 overflow-hidden absolute z-0 rounded-[inherit]", )} style={{ filter: "blur(2px)", |
