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";
4
4
import { ToolTipLabel } from "@/components/ui/tooltip" ;
5
5
import { TrackedLinkTW } from "@/components/ui/tracked-link" ;
6
6
import { cn } from "@/lib/utils" ;
7
- import { CheckIcon , CircleDollarSignIcon } from "lucide-react" ;
7
+ import { CheckIcon , CircleAlertIcon , CircleDollarSignIcon } from "lucide-react" ;
8
8
import type React from "react" ;
9
9
import { TEAM_PLANS } from "utils/pricing" ;
10
10
import { remainingDays } from "../../../utils/date-utils" ;
@@ -105,6 +105,23 @@ export const PricingCard: React.FC<PricingCardProps> = ({
105
105
{ ! isCustomPrice && (
106
106
< span className = "text-muted-foreground" > / month</ span >
107
107
) }
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
+ ) }
108
125
</ div >
109
126
110
127
{ remainingTrialDays > 0 && (
You can’t perform that action at this time.
0 commit comments