Components
Loading preview...
wallet card with shadcn card button
@beratberkay
npx shadcn@latest add https://21st.dev/r/beratberkayg/wallet-cardimport { WalletCard } from "@/components/ui/wallet-card";
import {
Wallet,
TrendingUp,
} from "lucide-react"
export default function DemoOne() {
return <WalletCard
totalBalance="$5,210.25"
btcAmount="0.192 BTC"
fundingBalance="$1,250.00"
tradingBalance="$3,960.25"
accounts={[
{
id: "1",
name: "Funding Account",
description: "Spot & fiat wallet",
icon: <Wallet className="w-5 h-5 text-slate-600" />,
},
{
id: "2",
name: "Trading Account",
description: "Futures & margin",
icon: <TrendingUp className="w-5 h-5 text-slate-600" />,
},
]}
/>
;
}