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 | 62x 62x 33x 219x 62x | import { Box, SxProps } from "@mui/material";
import { styled, useAppTheme } from "@theme/v2/Provider";
import { ChatCircleIcon } from "@phosphor-icons/react";
interface CounterChatProps {
id: number;
sx?: SxProps;
}
export default function CounterChat({ id, sx }: CounterChatProps) {
const { palette } = useAppTheme();
return (
<Container sx={sx} backgroundColor={palette.surface?.tertiary}>
<ChatCircleIcon
size={16}
weight="fill"
style={{ color: palette.text?.primary }}
data-testid={`merchant-${id}-unread-message-flag`}
/>
</Container>
);
}
const Container = styled(Box, {
shouldForwardProp: (prop) => prop !== "backgroundColor",
})<{
backgroundColor?: string;
}>(({ backgroundColor }) => ({
borderRadius: "32px",
height: "24px",
width: "32px",
display: "flex",
alignItems: "center",
justifyContent: "center",
gap: "4px",
backgroundColor,
padding: "4px 8px",
}));
|