style(ui): use coin icons for wallet actions
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import {
|
||||
Coins,
|
||||
Gift,
|
||||
ImageIcon,
|
||||
MessageCircle,
|
||||
@@ -9,6 +8,7 @@ import {
|
||||
Phone,
|
||||
Sparkles,
|
||||
} from "lucide-react";
|
||||
import { FaCoins } from "react-icons/fa6";
|
||||
|
||||
import { BackButton } from "@/app/_components";
|
||||
import { MobileShell } from "@/app/_components/core";
|
||||
@@ -76,7 +76,7 @@ export function CoinsRulesScreen() {
|
||||
|
||||
<div className={styles.hero}>
|
||||
<span className={styles.heroIcon} aria-hidden="true">
|
||||
<Coins size={24} strokeWidth={2.4} />
|
||||
<FaCoins size={24} />
|
||||
</span>
|
||||
<p className={styles.eyebrow}>Coins Guide</p>
|
||||
<h1 className={styles.title}>Coin Usage Rules</h1>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import { Coins } from "lucide-react";
|
||||
import { FaCoins } from "react-icons/fa6";
|
||||
|
||||
import styles from "./sidebar-wallet-card.module.css";
|
||||
|
||||
@@ -25,7 +25,7 @@ export function SidebarWalletCard({
|
||||
<div className={styles.leftColumn}>
|
||||
<div className={styles.titleRow}>
|
||||
<span className={styles.iconWrap} aria-hidden="true">
|
||||
<Coins size={18} strokeWidth={2.4} />
|
||||
<FaCoins size={18} />
|
||||
</span>
|
||||
<h2 className={styles.title}>My Wallet</h2>
|
||||
</div>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import { Coins } from "lucide-react";
|
||||
import { FaCoins } from "react-icons/fa6";
|
||||
|
||||
import styles from "./subscription-coins-offer-section.module.css";
|
||||
|
||||
@@ -42,7 +42,7 @@ export function SubscriptionCoinsOfferSection({
|
||||
onClick={() => onSelectPlan(plan.id)}
|
||||
>
|
||||
<span className={styles.coinIcon} aria-hidden="true">
|
||||
<Coins size={18} strokeWidth={2.4} />
|
||||
<FaCoins size={18} />
|
||||
</span>
|
||||
<span className={styles.coins}>{plan.coins} Coins</span>
|
||||
<span className={styles.price}>
|
||||
|
||||
Reference in New Issue
Block a user