Skip to content

Commit 22e8d95

Browse files
committed
chore remove icon coloring
1 parent 70a0408 commit 22e8d95

File tree

1 file changed

+4
-4
lines changed
  • apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/components

1 file changed

+4
-4
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/components/FeatureCard.client.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ export function FeatureCard(props: {
2323
<div className="flex-1 flex flex-col items-start gap-6 w-full">
2424
<div className="relative w-full">
2525
<div
26-
className={`${props.color === "green" ? "bg-green-700/25" : "bg-violet-700/25"} rounded-lg size-9 flex items-center justify-center`}
26+
className={
27+
"border bg-background rounded-lg size-9 flex items-center justify-center"
28+
}
2729
>
28-
<props.icon
29-
className={`size-5 ${props.color === "green" ? "text-green-500" : "text-violet-500"}`}
30-
/>
30+
<props.icon className={`size-5 text-foreground`} />
3131
</div>
3232
{props.badge && (
3333
<Badge

0 commit comments

Comments
 (0)