import React from 'react'; import { View } from 'react-native'; import { Row } from 'react-native-easy-grid'; import styles from './styles'; import { themes } from '../../../lib/constants'; import { CustomIcon } from '../../CustomIcon'; import { useTheme } from '../../../theme'; const LockIcon = React.memo(() => { const { theme } = useTheme(); return ( ); }); export default LockIcon;