// @ts-nocheck import React from 'react'; import styled from 'styled-components'; import { T, TotalLines, TotalLine, TotalLineBorderStyle, TotalLineTextStyle, } from '@/components'; import { useExpenseSubtotalFormatted, useExpenseTotalFormatted, } from './utils'; export function ExpenseFormFooterRight() { const totalFormatted = useExpenseTotalFormatted(); const subtotalFormatted = useExpenseSubtotalFormatted(); return ( } value={subtotalFormatted} borderStyle={TotalLineBorderStyle.None} /> } value={totalFormatted} textStyle={TotalLineTextStyle.Bold} /> ); } const ExpensesTotalLines = styled(TotalLines)` width: 100%; color: #555555; `;