\n
\n \n \n {getTranslation(glossaryArticleCardTranslation, 'otherStories')}\n \n \n {glossaryArticle.otherStories.map((card) => (\n \n \n \n ))}\n \n
\n \n
\n >\n )\n ) : null;\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { jsx as _jsx } from \"@emotion/react/jsx-runtime\";\nimport React from 'react';\nfunction LinkOverlayComponent(props, ref) {\n const { isExternal = false, target, rel, className, children, component = 'a' } = props, rest = __rest(props, [\"isExternal\", \"target\", \"rel\", \"className\", \"children\", \"component\"]);\n const Component = component;\n return (_jsx(Component, Object.assign({ ref: ref, className: `ui__link__overlay ${className ? className : ''}`, css: {\n position: 'static',\n textDecoration: 'none',\n color: 'inherit',\n '&::before': {\n content: '\"\"',\n cursor: 'inherit',\n display: 'block',\n position: 'absolute',\n top: 0,\n left: 0,\n zIndex: 0,\n width: '100%',\n height: '100%',\n },\n } }, rest, { rel: isExternal ? 'noopener noreferrer' : rel, target: isExternal ? '_blank' : target, children: children })));\n}\n/**\n * A component used to wrap and entire element in a link while staying semantic and accessible. Should be used with LinkOverlayContainer.\n *\n * @example\n *