24 lines
597 B
TypeScript
24 lines
597 B
TypeScript
import { styled } from "@mui/material";
|
|
import { SectionCard } from "../SectionCard/SectionCard";
|
|
|
|
const AccountIQIcon = styled("div")(() => ({
|
|
fontWeight: "bold",
|
|
color: "#4ecdc4",
|
|
marginTop: "4px",
|
|
}));
|
|
|
|
export const AccountIQ = () => {
|
|
return (
|
|
<SectionCard
|
|
title="AccountIQ"
|
|
icon={<AccountIQIcon>AIQ</AccountIQIcon>}
|
|
items={[
|
|
{ title: "Automatically reconcile your transactions" },
|
|
{ title: "Live wallet balances from providers" },
|
|
{ title: "Gaming provider financial overviews" },
|
|
{ title: "Learn more" },
|
|
]}
|
|
/>
|
|
);
|
|
};
|