From 9f4f2e47968b21e80a6853bbe3a6253cc5443e62 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 7 Aug 2026 04:14:27 +0000 Subject: [PATCH] Modified by www.SourceFiles.app --- src/components/ui/tooltip.tsx | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 src/components/ui/tooltip.tsx diff --git a/src/components/ui/tooltip.tsx b/src/components/ui/tooltip.tsx deleted file mode 100644 index 07e55fa..0000000 --- a/src/components/ui/tooltip.tsx +++ /dev/null @@ -1,32 +0,0 @@ -"use client"; - -import * as React from "react"; -import * as TooltipPrimitive from "@radix-ui/react-tooltip"; - -import { cn } from "@/lib/utils"; - -const TooltipProvider = TooltipPrimitive.Provider; - -const Tooltip = TooltipPrimitive.Root; - -const TooltipTrigger = TooltipPrimitive.Trigger; - -const TooltipContent = React.forwardRef< - React.ElementRef, - React.ComponentPropsWithoutRef ->(({ className, sideOffset = 4, ...props }, ref) => ( - - - -)); -TooltipContent.displayName = TooltipPrimitive.Content.displayName; - -export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider };