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 | 1x 1x 7x 7x | import { CheckCircleIcon, SpinnerIcon } from "@phosphor-icons/react";
import { CustomPalette } from "@theme/v2/palette.interface";
interface BEStatusObject {
[key: string]: BEStatus;
}
export interface EmailCardProps {
email: string;
status: BEStatus;
disabled?: boolean;
}
export type BEStatus = "pending" | "verified";
export const BEStatus: BEStatusObject = {
pending: "pending",
verified: "verified",
};
export const getStatus = (
status: BEStatus,
palette: CustomPalette,
): { text: BEStatus; icon?: React.ReactNode } => {
switch (status) {
case "pending":
return { text: status, icon: <SpinnerIcon /> };
case "verified":
return {
text: status,
icon: (
<CheckCircleIcon fill={palette.primitive?.success[50]} weight="fill" />
),
};
default:
return { text: status, icon: <SpinnerIcon /> };
}
};
|