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
456 B

import React from 'react'
import './Income.css'
import logo from '../assets/widget_logos/income_logo.png';
export default function Income() {
return (
<>
<div class="income_widget">
<h4 class="widget_header">This Month's Income</h4>
<img src={logo} />
<h1>$1,525.00</h1>
<h6>+ $1,037.51 (42%) last month</h6>
</div>
</>
)
}