Petropoulos Evangelos c76099dd3d refactor scss
2025-06-30 19:21:27 +03:00

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>
);
};