21 lines
577 B
TypeScript
21 lines
577 B
TypeScript
import { Box } from "@mui/material";
|
|
import { SectionCard } from "../SectionCard/SectionCard";
|
|
import "./AccountIQ.scss";
|
|
|
|
export const AccountIQ = () => {
|
|
return (
|
|
<Box className="account-iq-wrapper">
|
|
<SectionCard
|
|
title="AccountIQ"
|
|
icon={<div className="icon">AIQ</div>}
|
|
items={[
|
|
{ title: "Automatically reconcile your transactions" },
|
|
{ title: "Live wallet balances from providers" },
|
|
{ title: "Gaming provider financial overviews" },
|
|
{ title: "Learn more" },
|
|
]}
|
|
/>
|
|
</Box>
|
|
);
|
|
};
|