/*! ========================================================= * Argon Dashboard Chakra PRO - v1.0.0 ========================================================= * Product Page: https://www.creative-tim.com/product/argon-dashboard-chakra-pro * Copyright 2022 Creative Tim (https://www.creative-tim.com/) * Designed and Coded by Simmmple & Creative Tim ========================================================= * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. */ // Chakra imports import { Box, Button, Flex, Grid, Icon, Spacer, Text, useColorMode, useColorModeValue, } from '@chakra-ui/react'; // Assets import BackgroundCard1 from 'assets/img/BackgroundCard1.png'; // Custom components import Card from 'components/Card/Card.js'; import CardHeader from 'components/Card/CardHeader.js'; import IconBox from 'components/Icons/IconBox'; import { MastercardIcon, VisaIcon } from 'components/Icons/Icons'; import { HSeparator } from 'components/Separator/Separator'; import BillingRow from 'components/Tables/BillingRow'; import InvoicesRow from 'components/Tables/InvoicesRow'; import TransactionRow from 'components/Tables/TransactionRow'; import React from 'react'; import { FaPaypal, FaPencilAlt, FaRegCalendarAlt, FaWallet, } from 'react-icons/fa'; import { RiMastercardFill } from 'react-icons/ri'; import { billingData, invoicesData, newestTransactions, olderTransactions, } from 'variables/general'; function Billing() { // Chakra color mode const iconBlue = useColorModeValue('blue.500', 'blue.500'); const textColor = useColorModeValue('gray.700', 'white'); const borderColor = useColorModeValue('#dee2e6', 'transparent'); const { colorMode } = useColorMode(); return ( Argon x Chakra 7812 2139 0823 XXXX VALID THRU 05/24 CVV 09X Salary Belong Interactive +$2000 Paypal Freelance Payment $455.00 Payment Method 7812 2139 0823 XXXX 7812 2139 0823 XXXX Invoices {invoicesData.map((row, index) => { return ( ); })} Billing Information {billingData.map((row, index) => { return ( ); })} Your Transactions 23 - 30 March 2022 NEWEST {newestTransactions.map((row, index) => { return ( ); })} OLDER {olderTransactions.map((row, index) => { return ( ); })} ); } export default Billing;