import React from 'react'; import BaseButton from './BaseButton'; import { themes } from '../../../constants/colors'; interface ISendButton { theme: string; onPress(): void; } const SendButton = React.memo(({ theme, onPress }: ISendButton) => ( )); export default SendButton;