Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | import React from "react";
import { Stack, styled } from "@mui/material";
import { Text } from "@common/Text";
import { palette } from "@palette";
import Figure from "@common/Figure";
export type StatsTitleProps = {
title?: string | React.ReactNode;
value: string;
isAmount?: boolean;
fontSize?: number;
align?: "right" | "left" | "center" | "inherit" | "justify";
isMainTitle?: boolean;
alignFigure?: "right" | "left";
ratio?: number | string | undefined;
ratioFontSize?: number | string | undefined;
};
export const StatsTitle = ({
title,
value,
isAmount = true,
fontSize = 96,
align = "right",
isMainTitle,
alignFigure = "right",
}: StatsTitleProps) => {
const alignItems = () => {
switch (alignFigure) {
case "right":
return "flex-end";
case "left":
return "flex-start";
default:
return undefined;
}
};
return (
<Stack direction="column" alignItems={alignItems}>
<Figure
sup={isMainTitle}
value={value}
fontSize={fontSize}
color={palette.gradient[10]}
variant={"h3"}
fontWeight={"light"}
lineHeight="normal"
isAmount={isAmount}
/>
<TitleText
variant="h5"
align={align}
width="100%"
data-testid={`stats-title-${title}`}
>
{title}
{isAmount && <span> (USD)</span>}
</TitleText>
</Stack>
);
};
const TitleText = styled(Text)(() => ({
fontSize: 14,
fontWeight: 400,
lineHeight: "120%",
color: palette.black[100],
}));
export default StatsTitle;
|