Move into web/

This commit is contained in:
Manav Rathi
2024-03-01 12:21:07 +05:30
parent b3193968e7
commit e15c7e1642
915 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
import { VerticallyCenteredFlex } from "@ente/shared/components/Container";
import { ButtonProps, Typography } from "@mui/material";
interface Iprops {
mainText: string;
subText?: string;
subIcon?: React.ReactNode;
color?: ButtonProps["color"];
}
const getSubTextColor = (color: ButtonProps["color"]) => {
switch (color) {
case "critical":
return "critical.main";
default:
return "text.faint";
}
};
export const CaptionedText = (props: Iprops) => {
return (
<VerticallyCenteredFlex gap={"4px"}>
<Typography> {props.mainText}</Typography>
<Typography variant="small" color={getSubTextColor(props.color)}>
{"•"}
</Typography>
{props.subText ? (
<Typography
variant="small"
color={getSubTextColor(props.color)}
>
{props.subText}
</Typography>
) : (
<Typography
variant="small"
color={getSubTextColor(props.color)}
>
{props.subIcon}
</Typography>
)}
</VerticallyCenteredFlex>
);
};