\n {useAccordions ? (\n
\n ) : (\n <>\n {sectionContentsPopulatedCheck() && (\n
\n \n {overviewLabel}\n \n \n )}\n
\n {showLegacyDescription ? this.renderDescription() : sections}\n
\n >\n )}\n
\n );\n }\n}\n","export enum FINISH {\n MATTE = 'matte-finish',\n SATIN = 'satin-finish',\n SHINE = 'shine-finish',\n NATURAL = 'natural-finish',\n SHIMMER = 'shimmer-finish'\n}\n","export enum COVERAGE {\n SHEER = 'sheer-coverage',\n MEDIUM = 'medium-coverage',\n FULL = 'full-coverage'\n}\n","export enum SKINTYPE {\n SENSITIVE = 'sensitive-skintype',\n VERYDRY = 'very-dry-skintype',\n DRY = 'dry-skintype',\n ANTIAGING = 'anti-aging-skintype',\n COMBINATION = 'combination-skintype',\n OILY = 'oily-skintype',\n NORMAL = 'normal-skintype'\n}\n","import * as React from 'react';\nimport styled from 'styled-components';\nimport * as classnames from 'classnames';\nimport { observer } from 'mobx-react';\nimport { ContentSpacing, breakpoint } from 'elc-base-theme';\nimport { Heading5, Body2 } from 'elc-typography';\nimport { translate, ITranslationsCollection } from 'elc-service';\nimport { Product } from '../../domain/entities/Product';\nimport { FINISH } from '../../constants/FinishOptions';\nimport { IMapping } from '../../../exported/product-cta/ProductCTA';\nimport { COVERAGE } from '../../constants/CoverageOptions';\nimport { SKINTYPE } from '../../constants/SkinTypeOptions';\nimport { classes } from '../../utils/Classes';\nimport { PRODUCT_OVERVIEW_SUMMARY } from '../../constants/DataTestIdAttributes';\n\nexport interface IProductOverviewSummary {\n translations?: ITranslationsCollection;\n product: Product;\n className?: string;\n}\n\nconst Wrapper = styled.div`\n width: 100%;\n display: block;\n clear: both;\n padding: ${ContentSpacing.space12} ${ContentSpacing.space8};\n margin: ${ContentSpacing.space12} 0;\n`;\n\nconst SummarySection = styled.div`\n width: 100%;\n float: left;\n [dir='rtl'] & {\n float: right;\n }\n\n ${breakpoint('desktop')`\n width: 50%;\n `};\n`;\n\ninterface IOverviewSection {\n headingLabel: string;\n content: string;\n className?: string;\n}\n\nconst OverviewSection = (props: IOverviewSection) => {\n const { headingLabel, content } = props;\n\n const productOverviewSummarySectionClassNames = classes('product-overview-summary-section');\n const productOverviewSummarySectionHeaderClassNames = classes(\n 'product-overview-summary-section-header'\n );\n const productOverviewSummarySectionBodyClassNames = classes(\n 'product-overview-summary-section-body'\n );\n\n return (\n