You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
483 B
17 lines
483 B
import React from 'react'
|
|
import './CurrentBalance.css'
|
|
import logo from '../assets/widget_logos/current_balance_logo.png';
|
|
|
|
export default function CurrentBalance() {
|
|
return (
|
|
<>
|
|
<div class="current_balance_widget">
|
|
<h4 class="widget_header">Current Balance</h4>
|
|
<img src={logo} />
|
|
<h1>$1238.56</h1>
|
|
<h6>+ $179.97 (17%) last month</h6>
|
|
</div>
|
|
</>
|
|
|
|
)
|
|
} |