From da71c01821487ae8d151433838a97395cb13d70c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 10:41:24 +0000 Subject: [PATCH] Update src/components/ui/TextLink.tsx --- src/components/ui/TextLink.tsx | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/src/components/ui/TextLink.tsx b/src/components/ui/TextLink.tsx index c808bfd..e69de29 100644 --- a/src/components/ui/TextLink.tsx +++ b/src/components/ui/TextLink.tsx @@ -1,33 +0,0 @@ -"use client"; - -import { useButtonClick } from "@/hooks/useButtonClick"; -import { cls } from "@/lib/utils"; - -interface TextLinkProps { - text: string; - href?: string; - onClick?: () => void; - className?: string; -} - -const TextLink = ({ text, href = "#", onClick, className = "" }: TextLinkProps) => { - const handleClick = useButtonClick(href, onClick); - - return ( - - {text} - - ); -}; - -export default TextLink;