Rocket.Chat.ReactNative/app/containers/MessageBox/buttons/FileButton.js

22 lines
419 B
JavaScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import BaseButton from './BaseButton';
2019-12-04 16:39:53 +00:00
const FileButton = React.memo(({ theme, onPress }) => (
<BaseButton
onPress={onPress}
testID='messagebox-actions'
accessibilityLabel='Message_actions'
icon='plus'
2019-12-04 16:39:53 +00:00
theme={theme}
/>
));
FileButton.propTypes = {
2019-12-04 16:39:53 +00:00
theme: PropTypes.string,
onPress: PropTypes.func.isRequired
};
export default FileButton;