import { StyleSheet } from 'react-native';
import sharedStyles from '../../views/Styles';
export const EMOJI_BUTTON_SIZE = 44;
export const EMOJI_SIZE = EMOJI_BUTTON_SIZE - 16;
export default StyleSheet.create({
container: {
flex: 1
},
tabsContainer: {
height: EMOJI_BUTTON_SIZE,
flexDirection: 'row'
tab: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
paddingVertical: 10,
width: EMOJI_BUTTON_SIZE
tabEmoji: {
fontSize: 20,
color: 'black'
activeTabLine: {
position: 'absolute',
left: 0,
right: 0,
height: 2,
bottom: 0
tabLine: {
categoryContainer: {
alignItems: 'flex-start'
categoryInner: {
flexWrap: 'wrap',
flexDirection: 'row',
justifyContent: 'flex-start',
categoryEmoji: {
...sharedStyles.textAlignCenter,
textAlignVertical: 'center',
fontSize: EMOJI_SIZE,
backgroundColor: 'transparent',
color: '#ffffff'
customCategoryEmoji: {
height: EMOJI_SIZE,
width: EMOJI_SIZE
emojiButton: {
footerContainer: {
paddingHorizontal: 12,
justifyContent: 'space-between',
borderTopWidth: 1
footerButtonsContainer: {
width: EMOJI_BUTTON_SIZE,
alignItems: 'center'
emojiPickerContainer: { flex: 1 }
});