import React from 'react'; import styled from 'styled-components'; import { T, TotalLines, TotalLineBorderStyle, TotalLineTextStyle, } from 'components'; import { useExpenseDrawerContext } from './ExpenseDrawerProvider'; import { FormatNumber, TotalLine } from '../../../components'; /** * Footer details of expense readonly details. */ export default function ExpenseDrawerFooter() { const { expense } = useExpenseDrawerContext(); return ( } value={} borderStyle={TotalLineBorderStyle.SingleDark} /> } value={} borderStyle={TotalLineBorderStyle.DoubleDark} textStyle={TotalLineTextStyle.Bold} /> ); } export const ExpenseDetailsFooterRoot = styled.div``; export const ExpenseTotalLines = styled(TotalLines)` margin-left: auto; `;