File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed
apps/dashboard/src/@/components/blocks Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { Button } from "@/components/ui/button";
44import { ToolTipLabel } from "@/components/ui/tooltip" ;
55import { TrackedLinkTW } from "@/components/ui/tracked-link" ;
66import { cn } from "@/lib/utils" ;
7- import { CheckIcon , CircleDollarSignIcon } from "lucide-react" ;
7+ import { CheckIcon , CircleAlertIcon , CircleDollarSignIcon } from "lucide-react" ;
88import type React from "react" ;
99import { TEAM_PLANS } from "utils/pricing" ;
1010import { remainingDays } from "../../../utils/date-utils" ;
@@ -105,6 +105,23 @@ export const PricingCard: React.FC<PricingCardProps> = ({
105105 { ! isCustomPrice && (
106106 < span className = "text-muted-foreground" > / month</ span >
107107 ) }
108+
109+ { billingPlan === "starter" && (
110+ < ToolTipLabel
111+ contentClassName = "max-w-[320px]"
112+ label = "We will place a temporary hold of $25 to verify your card, this will be immediately released back to you after verification."
113+ >
114+ < Button
115+ asChild
116+ variant = "ghost"
117+ className = "h-auto w-auto p-1 text-muted-foreground hover:text-foreground"
118+ >
119+ < div >
120+ < CircleAlertIcon className = "size-5 shrink-0" />
121+ </ div >
122+ </ Button >
123+ </ ToolTipLabel >
124+ ) }
108125 </ div >
109126
110127 { remainingTrialDays > 0 && (
You can’t perform that action at this time.
0 commit comments