@chayns-components/emoji-input
Version:
Input field that supports HTML elements and emojis
20 lines • 504 B
JavaScript
import styled from 'styled-components';
import { getFontFamily } from '../../../../utils/font';
export const StyledEmoji = styled.div`
align-items: center;
cursor: pointer;
display: flex;
font-family: ${getFontFamily};
font-size: 32px;
justify-content: center;
width: 48px;
height: 48px;
background-color: ${_ref => {
let {
theme,
$isSelected
} = _ref;
return $isSelected ? theme['secondary-102'] : 'none';
}};
`;
//# sourceMappingURL=Emoji.styles.js.map