import React from 'react'; import { View } from 'react-native'; import { TSupportedThemes } from '../../theme'; import { themes } from '../../lib/constants'; import styles from './styles'; interface IBlockQuote { children: React.ReactElement | null; theme: TSupportedThemes; } const BlockQuote = React.memo(({ children, theme }: IBlockQuote) => ( {children} )); export default BlockQuote;