\n
\n {this.state.open ? this.props.children : null}\n
\n
\n {this.state.open ? closeLabel : openLabel}\n
\n
\n )\n }\n}\n","import React from 'react'\n\nimport Button from '~/components/button'\nimport ContentToggle from '~/components/content-toggle-v2'\nimport Icon from '~/components/icon'\nimport useFeatureFlags from '~/hooks/use-feature-flags'\nimport { i18n } from '~/i18n'\n\nimport './my-account-submenu.scss'\n\nimport type { GuestProfile } from '~/types'\n\ntype Props = {\n authenticated: boolean\n onClickLink?: () => any\n profile?: GuestProfile\n validForBenefits: boolean\n}\n\nconst ListItemLink = ({\n to,\n text,\n onClick,\n}: {\n to: string\n text: string\n onClick: (() => void) | null | undefined\n}) => (\n