import React from 'react'; import { themes } from '../../../lib/constants'; import { useTheme } from '../../../theme'; import BaseButton from './BaseButton'; interface ISendButton { onPress(): void; } const SendButton = ({ onPress }: ISendButton) => { const { theme } = useTheme(); return ( ); }; export default SendButton;