import { Card, Statistic, Row, Col } from "antd"; import dayjs from "dayjs"; import { CurrentMonth } from "../../../types/Profile/TProfile"; type Props = { current: CurrentMonth; }; const CurrentMonthCard: React.FC = ({ current }) => { return ( {`Current month / ${dayjs().format("MMMM")}`} } value={current.salary} prefix="$" precision={2} valueStyle={{ fontFamily: "Inter", fontSize: "24px", fontStyle: "normal", fontWeight: 700, lineHeight: "28px", letterSpacing: "-0.96px", }} />
Bonuses:
Charges:
Tasks:
Points:
); }; export default CurrentMonthCard;