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