{"version":3,"file":"EmojiIcon-C_qA0K-5.js","sources":["../../../frontend/src/Utils/Types/VoteTypes.ts","../../../frontend/src/Components/DesignSystem/CounterButton/EmojiIcon.tsx"],"sourcesContent":["const VotesTypes = {\n SUPPORT: 'support',\n NOT_SUPPORT: 'not_support',\n BUDGET: 'budget',\n};\n\nexport default VotesTypes;\n","import React from 'react';\nimport { useIntl } from 'react-intl';\nimport PropTypes from 'prop-types';\n\nimport VotesTypes from '../../../Utils/Types/VoteTypes';\n\nfunction EmojiIcon({ reaction, size = 24 }: any) {\n const intl = useIntl();\n const reactions = {\n comment: {\n icon: '💬',\n ariaLabel: `${intl.formatMessage({ id: 'POSTS.INDICATORS.COMMENTS' })} emoji`,\n },\n [VotesTypes.BUDGET]: {\n icon: '🛒',\n ariaLabel: `${intl.formatMessage({ id: 'BUTTONS.VOTE.BUDGET' })} emoji`,\n },\n [VotesTypes.SUPPORT]: {\n icon: '😍',\n ariaLabel: `${intl.formatMessage({ id: 'BUTTONS.VOTE.SUPPORT' })} emoji`,\n },\n [VotesTypes.NOT_SUPPORT]: {\n icon: '🙁',\n ariaLabel: `${intl.formatMessage({ id: 'BUTTONS.VOTE.NOT_SUPPORT' })} emoji`,\n },\n };\n\n const selectedReaction = reactions[reaction];\n\n return (\n