import React from 'react'; import { TouchableOpacity } from 'react-native'; import { Icon, createStyleSheet, useUIKitTheme } from '@sendbird/uikit-react-native-foundation'; export type AttachmentsButtonProps = { onPress: () => void; disabled: boolean; }; const AttachmentsButton = ({ onPress, disabled }: AttachmentsButtonProps) => { const { colors } = useUIKitTheme(); return ( ); }; const styles = createStyleSheet({ container: { marginEnd: 8, padding: 4, }, }); export default AttachmentsButton;