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