- Introduced Payment model and associated components for managing payments within the finance dashboard. - Added PaymentIcon for visual representation in the sidebar and other components. - Implemented Payments overview, including statistics and a new modal for creating payments. - Enhanced InvoiceInfo component to include payment details and actions for acknowledging and posting payments. - Updated database models to integrate payment functionalities, ensuring comprehensive financial tracking.
7 lines
215 B
JavaScript
7 lines
215 B
JavaScript
import Icon from '@ant-design/icons'
|
|
import CustomIconSvg from '../../../assets/icons/paymenticon.svg?react'
|
|
|
|
const PaymentIcon = (props) => <Icon component={CustomIconSvg} {...props} />
|
|
|
|
export default PaymentIcon
|