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 | 56x 56x | import { Stack } from "@mui/material";
import GiveCheckbox from "@shared/GiveCheckbox/GiveCheckbox";
import GiveText from "@shared/Text/GiveText";
import GiveThumbnail from "@shared/Thumbnail/GiveThumbnail";
import { useAppTheme } from "@theme/v2/Provider";
import { parseAmount } from "@utils/index";
export default function RefundItem({
name,
imageUrl,
quantity,
amount = 0,
currency,
selected,
onSelect,
hideCheckbox,
}: {
name: string;
quantity: number;
imageUrl?: string;
amount?: number;
currency?: string;
selected?: boolean;
onSelect?: () => void;
hideCheckbox?: boolean;
}) {
const { palette } = useAppTheme();
return (
<Stack
direction="row"
alignItems="center"
p="12px"
border={`1px solid ${palette.border?.primary}`}
gap="16px"
borderRadius="12px"
width="100%"
onClick={onSelect}
>
{!hideCheckbox && (
<GiveCheckbox checked={selected} data-testid="refund-item-checkbox" />
)}
<GiveThumbnail
type="product"
imageUrl={imageUrl}
size="small_medium"
sx={{ borderRadius: "unset" }}
/>
<Stack gap="4px" flex={1}>
<GiveText variant="bodyM">{name}</GiveText>
<GiveText variant="bodyM" color="secondary">
Quantity: {quantity}
</GiveText>
</Stack>
<GiveText variant="bodyM">
{parseAmount(amount / 100)} {currency}
</GiveText>
</Stack>
);
}
|