aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/ui
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web/components/ui')
-rw-r--r--apps/web/components/ui/info-tooltip.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/web/components/ui/info-tooltip.tsx b/apps/web/components/ui/info-tooltip.tsx
index eeace885..0254aa80 100644
--- a/apps/web/components/ui/info-tooltip.tsx
+++ b/apps/web/components/ui/info-tooltip.tsx
@@ -21,7 +21,11 @@ export default function InfoTooltip({
<Tooltip>
<TooltipTrigger asChild>
{variant === "tip" ? (
- <Info className={cn("cursor-pointer", className)} size={size} />
+ <Info
+ color="#494949"
+ className={cn("cursor-pointer", className)}
+ size={size}
+ />
) : (
<HelpCircle className={cn("cursor-pointer", className)} size={size} />
)}