import React from 'react'; import PropTypes from 'prop-types'; import { View } from 'react-native'; import styles from './styles'; import { themes } from '../../constants/colors'; export const Handle = React.memo(({ theme }) => ( )); Handle.propTypes = { theme: PropTypes.string };