@chayns-components/emoji-input
Version:
Input field that supports HTML elements and emojis
16 lines • 426 B
JavaScript
import styled from 'styled-components';
export const emojiPickerSize = {
height: 285,
width: 350
};
export const StyledEmojiPicker = styled.div`
align-items: center;
display: flex;
flex-direction: column;
height: ${emojiPickerSize.height}px;
justify-content: center;
padding: 10px 22px;
width: ${emojiPickerSize.width}px;
user-select: none;
`;
//# sourceMappingURL=EmojiPicker.styles.js.map