mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 13:38:01 -05:00
* feat(INJI-351): style vcDetails page * feat(INJI-351): add translations to fil lang and remove QRcode style --------- Co-authored-by: Pooja Babusingh <68894211+PoojaBabusingh@users.noreply.github.com>
17 lines
447 B
TypeScript
17 lines
447 B
TypeScript
import React from 'react';
|
|
import {View} from 'react-native';
|
|
import {Icon} from 'react-native-elements';
|
|
import {Theme} from './ui/styleUtils';
|
|
|
|
const VerifiedIcon: React.FC = () => {
|
|
return (
|
|
<View style={Theme.Styles.verifiedIconContainer}>
|
|
<View style={Theme.Styles.verifiedIconInner}>
|
|
<Icon name="check-circle" color={Theme.Colors.VerifiedIcon} size={12} />
|
|
</View>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
export default VerifiedIcon;
|