import React from 'react'; import { Text, View } from 'react-native'; import { Row } from 'react-native-easy-grid'; import styles from './styles'; import { themes } from '../../../lib/constants'; import { useTheme } from '../../../theme'; interface IPasscodeSubtitle { text: string; } const Subtitle = React.memo(({ text }: IPasscodeSubtitle) => { const { theme } = useTheme(); return ( {text} ); }); export default Subtitle;