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