mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 21:48:04 -05:00
* Revert "[INJIMOB-3622] Fix alignment in history screen (#2140)" This reverts commita0b08914e5. Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com> * Revert "Injimob [3622] [3627] - BANNER ISSUE AND BRANDING CHANGES ISSUES (#2130)" This reverts commit522104811c. Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com> * Revert "[INJIMOB-3633][INJIMOB-3636] fix icon bg color across app (#2134)" This reverts commitd8d718693d. Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com> * Revert "[INJIMOB-3633] fix search bar clear icon not apperaing (#2133)" This reverts commit6a202b11af. Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com> * Injimob-3651: revert all the old branding changes and add new changes #2150 Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com> * [INJIMOB-3651]: Update all the test snapshots Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com> --------- Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com>
30 lines
930 B
TypeScript
30 lines
930 B
TypeScript
import React from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { View } from "react-native";
|
|
import { Column } from "../../ui";
|
|
import { Theme } from "../../ui/styleUtils";
|
|
import { Text } from "../../ui";
|
|
import { VC_STATUS_KEYS } from "./VCUtils";
|
|
|
|
export const StatusTooltipContent = () => {
|
|
const { t } = useTranslation('ViewVcModal');
|
|
|
|
return (
|
|
<Column align="center" style={{marginTop:20}}>
|
|
{VC_STATUS_KEYS.map(key => (
|
|
<View key={key} style={{ marginBottom: 20 }}>
|
|
<Text weight="semibold">{t(`statusToolTipContent.${key}.title`)}</Text>
|
|
<Text
|
|
weight="regular"
|
|
style={[
|
|
Theme.Styles.tooltipContentDescription,
|
|
{ marginTop: 3 },
|
|
]}>
|
|
{t(`statusToolTipContent.${key}.description`)}
|
|
</Text>
|
|
</View>
|
|
))}
|
|
</Column>
|
|
);
|
|
};
|
|
|