{"version":3,"file":"ContentPageShareableQuote-DvSI9DIq-chunk.js","sources":["../../../src/components/page/content-page/ContentPageShareableQuote.jsx"],"sourcesContent":["import React from \"react\";\nimport PropTypes from \"prop-types\";\nimport ContentPageSharePublicLinksSocial from \"./ContentPageSharePublicLinksSocial\";\n\nconst ContentPageShareableQuote = (props) => {\n\tconst { hideShare, quoteText, showQuotationMarks, theme, shareUrl, guid, sharePlatforms } =\n\t\tprops.dataset;\n\tconst platforms = JSON.parse(sharePlatforms).map((platform) => ({ label: platform }));\n\tconst quote =\n\t\tshowQuotationMarks === \"true\" || showQuotationMarks === true\n\t\t\t? \"\\u201C\" + quoteText + \"\\u201D\"\n\t\t\t: quoteText;\n\tconst analytics = {\n\t\taction: \"Share Quote_\" + guid,\n\t\tcategory: \"Share\",\n\t\tcomp: \"Share Quote\"\n\t};\n\n\treturn (\n\t\t