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