Files
inji-wallet/components/PendingIcon.tsx
abhip2565 52c7ed1357 [INJIMOB-3581] add revocation and reverification logic (#2117)
* [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>
2025-11-05 19:03:12 +05:30

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;