mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-08 05:03:56 -05:00
* [INJIMOB-3581] add revocation and reverification logic Signed-off-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com> * [INJIMOB-3581] refactor readable array conversion to a shared utility Signed-off-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com> --------- Signed-off-by: Abhishek Paul <paul.apaul.abhishek.ap@gmail.com>
26 lines
598 B
TypeScript
26 lines
598 B
TypeScript
import React from 'react';
|
|
import {View} from 'react-native';
|
|
import {Icon} from 'react-native-elements';
|
|
import {Theme} from './ui/styleUtils';
|
|
|
|
interface PendingIconProps {
|
|
color?: string;
|
|
}
|
|
|
|
const PendingIcon: React.FC<PendingIconProps> = (props) => {
|
|
return (
|
|
<View style={Theme.Styles.verificationStatusIconContainer}>
|
|
<View style={Theme.Styles.verificationStatusIconInner}>
|
|
<Icon
|
|
name="alert-circle"
|
|
type="material-community"
|
|
color={props.color}
|
|
size={12}
|
|
/>
|
|
</View>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default PendingIcon;
|