@manamerge/mana-atomic-ui 1.0.197 → 1.0.199

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/dist/index.d.ts +1 -0
  2. package/dist/index.js +60 -59
  3. package/dist/index.js.map +1 -1
  4. package/dist/themes/themes/davidWeb/fonts/Gilmer-Bold.woff2 +0 -0
  5. package/dist/themes/themes/davidWeb/fonts/Gilmer-Heavy.woff2 +0 -0
  6. package/dist/themes/themes/davidWeb/fonts/Gilmer-Light.woff2 +0 -0
  7. package/dist/themes/themes/davidWeb/fonts/Gilmer-Medium.woff2 +0 -0
  8. package/dist/themes/themes/davidWeb/fonts/Gilmer-Regular.woff2 +0 -0
  9. package/dist/themes/themes/davidWeb/fonts/Springwood/SpringwoodBrush-Italic.woff2 +0 -0
  10. package/dist/themes/themes/davidWeb/fonts/Springwood/SpringwoodBrush-Regular.woff2 +0 -0
  11. package/dist/themes/themes/davidWeb/molecules/cardTeaser.ts +3 -2
  12. package/dist/themes/themes/manamerge/atoms/button.ts +1 -1
  13. package/dist/themes/themes/manamerge/miscellaneous/colorpalette.ts +1 -2
  14. package/dist/themes/themes/manamerge/molecules/accordion.ts +1 -6
  15. package/dist/themes/themes/manamerge/molecules/cardTeaser.ts +20 -22
  16. package/dist/themes/themes/manamerge/molecules/footer.ts +7 -2
  17. package/dist/themes/themes/manamerge/molecules/header.ts +1 -1
  18. package/dist/themes/themes/manamerge/molecules/navigation.ts +6 -1
  19. package/dist/types/components/Molecules/CardTeaser/CardTeaser.css.d.ts +6 -0
  20. package/dist/types/components/Molecules/CardTeaser/CardTeaser.d.ts +1 -0
  21. package/dist/types/components/Molecules/Navigation/Navigation.css.d.ts +0 -3
  22. package/dist/types/themes/DavidWebTheme.d.ts +1 -5
  23. package/dist/types/themes/ManamergeTheme.d.ts +11 -10
  24. package/dist/types/themes/davidWeb/molecules/cardTeaser.d.ts +1 -0
  25. package/dist/types/themes/manamerge/miscellaneous/colorpalette.d.ts +0 -1
  26. package/dist/types/themes/manamerge/molecules/accordion.d.ts +0 -5
  27. package/dist/types/themes/manamerge/molecules/cardTeaser.d.ts +11 -4
  28. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -160,6 +160,7 @@ interface CardTeaserTypes {
160
160
  onClick?: React.MouseEventHandler<HTMLElement>;
161
161
  checks?: string[];
162
162
  svg?: FunctionComponent<SVGProps<SVGSVGElement>>;
163
+ backgroundSvg?: FunctionComponent<SVGProps<SVGSVGElement>>;
163
164
  cardImageSrc?: string;
164
165
  separator?: boolean;
165
166
  }
package/dist/index.js CHANGED
@@ -718,7 +718,7 @@ const NavBar = styled.nav `
718
718
  width: auto;
719
719
  right: 0;
720
720
  left: 0;
721
- z-index: 20;
721
+ z-index: 1;
722
722
 
723
723
  ${({ theme, moleculeVariant }) => {
724
724
  var _a;
@@ -772,30 +772,15 @@ const NavLinks = styled.div `
772
772
  flex-direction: column;
773
773
  text-align: right;
774
774
  align-items: flex-end;
775
- display: flex;
776
-
775
+ display: ${({ isOpen }) => (isOpen ? "flex" : "none")};
777
776
  width: 100%;
778
777
 
779
- overflow: hidden;
780
- transition:
781
- max-height 0.55s ease,
782
- opacity 0.55s ease,
783
- transform 0.55s ease;
784
-
785
- max-height: ${({ isOpen }) => (isOpen ? "400px" : "0px")};
786
- opacity: ${({ isOpen }) => (isOpen ? 1 : 0)};
787
- transform: ${({ isOpen }) => isOpen ? "translateY(0)" : "translateY(-10px)"};
788
-
789
778
  ${({ theme, moleculeVariant }) => {
790
779
  var _a, _b, _c, _d;
791
780
  const thisTheme = ((_d = (_c = (_b = (_a = theme === null || theme === void 0 ? void 0 : theme.navigation) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) === null || _b === void 0 ? void 0 : _b.navLinks) === null || _c === void 0 ? void 0 : _c.responsive) === null || _d === void 0 ? void 0 : _d.largeMobileUp) || {};
792
781
  const { largeMobileUp } = theme.media;
793
782
  return css `
794
783
  ${largeMobileUp} {
795
- max-height: none;
796
- opacity: 1;
797
- transform: none;
798
-
799
784
  margin: ${thisTheme === null || thisTheme === void 0 ? void 0 : thisTheme.margin};
800
785
  display: flex;
801
786
  flex-direction: row;
@@ -859,17 +844,6 @@ const StyledLink$1 = styled(Link).attrs(({ theme, moleculeVariant }) => {
859
844
  `;
860
845
  }};
861
846
  `;
862
- const Backdrop = styled.div `
863
- position: fixed;
864
- inset: 0;
865
- background: rgba(0, 0, 0, 0.3);
866
-
867
- opacity: ${({ isOpen }) => (isOpen ? 1 : 0)};
868
- pointer-events: ${({ isOpen }) => (isOpen ? "auto" : "none")};
869
-
870
- transition: opacity 0.25s ease;
871
- z-index: 10;
872
- `;
873
847
 
874
848
  const Navigation = ({ moleculeVariant = "primary", logo, onLogoClick, iconBurger, tabs }) => {
875
849
  const location = useLocation();
@@ -879,9 +853,9 @@ const Navigation = ({ moleculeVariant = "primary", logo, onLogoClick, iconBurger
879
853
  setIsOpen(!isOpen);
880
854
  };
881
855
  const compVariant = `Navigation-${moleculeVariant}`;
882
- return (jsxs(Fragment, { children: [jsx(Backdrop, { isOpen: isOpen, onClick: () => setIsOpen(false) }), jsxs(NavBar, Object.assign({ className: classNames(compVariant), moleculeVariant: compVariant }, { children: [logo && (jsx(AtomIcon$3, { moleculeVariant: compVariant, svg: logo, onClick: onLogoClick, onKeyDown: onLogoClick, "aria-label": "Logo", tabIndex: 0, role: "button" })), jsxs("div", Object.assign({ style: { width: "100%" } }, { children: [jsx(BurgerWrapper, { children: jsx(AtomIcon$3, { moleculeVariant: compVariant, svg: iconBurger, onClick: handleToggle, onKeyDown: handleToggle, "aria-pressed": isOpen, "aria-label": "Burger", tabIndex: 0, role: "button" }) }), jsx(NavLinks, Object.assign({ isOpen: isOpen, moleculeVariant: compVariant }, { children: tabs.length > 0
883
- ? tabs.map((tab) => (jsx(StyledLink$1, Object.assign({ moleculeVariant: compVariant, to: tab.to, currentPath: tab.to === currentPath, onClick: () => setIsOpen(false) }, { children: tab.label }), tab.label)))
884
- : "no tabs available" }))] }))] }))] }));
856
+ return (jsxs(NavBar, Object.assign({ className: classNames(compVariant), moleculeVariant: compVariant }, { children: [logo && (jsx(AtomIcon$3, { moleculeVariant: compVariant, svg: logo, onClick: onLogoClick, onKeyDown: onLogoClick, "aria-label": "Logo", tabIndex: 0, role: "button" })), jsxs("div", Object.assign({ style: { width: "100%" } }, { children: [jsx(BurgerWrapper, { children: jsx(AtomIcon$3, { moleculeVariant: compVariant, svg: iconBurger, onClick: handleToggle, onKeyDown: handleToggle, "aria-pressed": isOpen, "aria-label": "Burger", tabIndex: 0, role: "button" }) }), jsx(NavLinks, Object.assign({ isOpen: isOpen, moleculeVariant: compVariant }, { children: tabs.length > 0
857
+ ? tabs.map((tab) => (jsx(StyledLink$1, Object.assign({ moleculeVariant: compVariant, to: tab.to, currentPath: tab.to === currentPath }, { children: tab.label }), tab.label)))
858
+ : "no tabs available" }))] }))] })));
885
859
  };
886
860
 
887
861
  // Wrapper for the footer
@@ -1006,21 +980,20 @@ const CardContainer = styled.div `
1006
980
  var _a;
1007
981
  const thisTheme = ((_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) || {};
1008
982
  return css `
1009
- background-image: ${thisTheme === null || thisTheme === void 0 ? void 0 : thisTheme.background};
1010
983
  border-radius: ${thisTheme === null || thisTheme === void 0 ? void 0 : thisTheme.borderRadius};
1011
984
  max-width: ${thisTheme === null || thisTheme === void 0 ? void 0 : thisTheme.maxWidth};
1012
985
  `;
1013
986
  }}
1014
-
1015
987
  display: flex;
1016
988
  flex-direction: row;
1017
989
  flex-wrap: nowrap;
1018
990
  justify-content: space-between;
1019
991
  `;
1020
992
  const HeadingCompanyDate = styled(Heading).attrs(({ theme, moleculeVariant }) => {
1021
- var _a, _b, _c;
993
+ var _a, _b, _c, _d, _e, _f;
1022
994
  return ({
1023
- variant: (_c = (_b = (_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) === null || _b === void 0 ? void 0 : _b.headingCompanyDate) === null || _c === void 0 ? void 0 : _c.variant
995
+ variant: (_c = (_b = (_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) === null || _b === void 0 ? void 0 : _b.headingCompanyDate) === null || _c === void 0 ? void 0 : _c.variant,
996
+ asTag: (_f = (_e = (_d = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _d === void 0 ? void 0 : _d[moleculeVariant]) === null || _e === void 0 ? void 0 : _e.headingCompanyDate) === null || _f === void 0 ? void 0 : _f.asTag
1024
997
  });
1025
998
  }) `
1026
999
  ${({ theme, moleculeVariant }) => {
@@ -1037,19 +1010,12 @@ const HeadingCompanyDate = styled(Heading).attrs(({ theme, moleculeVariant }) =>
1037
1010
  overflow: hidden;
1038
1011
  `;
1039
1012
  const HeadingTitle = styled(Heading).attrs(({ theme, moleculeVariant }) => {
1040
- var _a, _b, _c;
1013
+ var _a, _b, _c, _d, _e, _f;
1041
1014
  return ({
1042
- variant: (_c = (_b = (_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) === null || _b === void 0 ? void 0 : _b.headingTitle) === null || _c === void 0 ? void 0 : _c.variant
1015
+ variant: (_c = (_b = (_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) === null || _b === void 0 ? void 0 : _b.headingTitle) === null || _c === void 0 ? void 0 : _c.variant,
1016
+ asTag: (_f = (_e = (_d = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _d === void 0 ? void 0 : _d[moleculeVariant]) === null || _e === void 0 ? void 0 : _e.headingTitle) === null || _f === void 0 ? void 0 : _f.asTag
1043
1017
  });
1044
- }) `
1045
- ${({ theme, moleculeVariant }) => {
1046
- var _a, _b;
1047
- const headingTheme = ((_b = (_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) === null || _b === void 0 ? void 0 : _b.headingTitle) || {};
1048
- return css `
1049
- color: ${headingTheme === null || headingTheme === void 0 ? void 0 : headingTheme.color};
1050
- `;
1051
- }}
1052
- `;
1018
+ }) ``;
1053
1019
  const TextListItem = styled(Text).attrs(({ theme, moleculeVariant }) => {
1054
1020
  var _a, _b, _c;
1055
1021
  return ({
@@ -1060,7 +1026,6 @@ const TextListItem = styled(Text).attrs(({ theme, moleculeVariant }) => {
1060
1026
  var _a, _b;
1061
1027
  const thisTheme = ((_b = (_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) === null || _b === void 0 ? void 0 : _b.text) || {};
1062
1028
  return css `
1063
- color: ${thisTheme === null || thisTheme === void 0 ? void 0 : thisTheme.color};
1064
1029
  margin: ${thisTheme === null || thisTheme === void 0 ? void 0 : thisTheme.margin};
1065
1030
  `;
1066
1031
  }}
@@ -1079,6 +1044,7 @@ const List = styled.ul `
1079
1044
  `;
1080
1045
  const ButtonCardContainer = styled.div `
1081
1046
  align-self: center;
1047
+ margin-top: 15px;
1082
1048
  ${({ theme }) => theme.media.mobileUp} {
1083
1049
  align-self: flex-start;
1084
1050
  }
@@ -1121,6 +1087,7 @@ const LeftCardContainer = styled.div `
1121
1087
  display: flex;
1122
1088
  flex-direction: column;
1123
1089
  width: 100%;
1090
+ z-index: 1;
1124
1091
  ${({ theme, moleculeVariant }) => {
1125
1092
  var _a, _b, _c, _d, _e;
1126
1093
  const leftCardContainer = ((_c = (_b = (_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) === null || _b === void 0 ? void 0 : _b.leftCardContainer) === null || _c === void 0 ? void 0 : _c.responsive) || {};
@@ -1178,11 +1145,24 @@ const Separator = styled.section `
1178
1145
  }
1179
1146
  `;
1180
1147
  const IconCard = styled(Icon).attrs(({ theme, moleculeVariant }) => {
1181
- var _a, _b, _c;
1148
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j;
1182
1149
  return ({
1183
- variant: (_c = (_b = (_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) === null || _b === void 0 ? void 0 : _b.icon) === null || _c === void 0 ? void 0 : _c.variant
1150
+ variant: (_c = (_b = (_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) === null || _b === void 0 ? void 0 : _b.icon) === null || _c === void 0 ? void 0 : _c.variant,
1151
+ fill: (_f = (_e = (_d = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _d === void 0 ? void 0 : _d[moleculeVariant]) === null || _e === void 0 ? void 0 : _e.icon) === null || _f === void 0 ? void 0 : _f.fill,
1152
+ stroke: (_j = (_h = (_g = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _g === void 0 ? void 0 : _g[moleculeVariant]) === null || _h === void 0 ? void 0 : _h.icon) === null || _j === void 0 ? void 0 : _j.stroke
1184
1153
  });
1185
- }) ``;
1154
+ }) `
1155
+ ${({ theme, moleculeVariant }) => {
1156
+ var _a;
1157
+ const thisTheme = ((_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) || {};
1158
+ return css `
1159
+ &:hover {
1160
+ fill: ${thisTheme.icon.hover.fill};
1161
+ stroke: ${thisTheme.icon.hover.stroke};
1162
+ }
1163
+ `;
1164
+ }};
1165
+ `;
1186
1166
  const ButtonCard = styled(Button).attrs(({ theme, moleculeVariant }) => {
1187
1167
  var _a, _b, _c;
1188
1168
  return ({
@@ -1193,18 +1173,43 @@ const CardBackgroundColor = styled.div `
1193
1173
  ${({ theme, moleculeVariant }) => {
1194
1174
  var _a;
1195
1175
  const thisTheme = ((_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) || {};
1176
+ const { largeMobileUp } = theme.media;
1196
1177
  return css `
1197
- width: 100%;
1178
+ position: relative;
1179
+ max-width: 500px;
1198
1180
  border-radius: ${thisTheme === null || thisTheme === void 0 ? void 0 : thisTheme.borderRadius};
1199
1181
  max-width: ${thisTheme === null || thisTheme === void 0 ? void 0 : thisTheme.maxWidth};
1200
1182
  background: ${thisTheme === null || thisTheme === void 0 ? void 0 : thisTheme.gradientBackground};
1183
+ ${largeMobileUp} {
1184
+ width: 100%;
1185
+ }
1186
+ `;
1187
+ }}
1188
+ `;
1189
+ const GradientStyle = styled(Gradient).attrs(({ theme, moleculeVariant }) => {
1190
+ var _a, _b, _c;
1191
+ return ({
1192
+ variant: (_c = (_b = (_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) === null || _b === void 0 ? void 0 : _b.gradient) === null || _c === void 0 ? void 0 : _c.variant
1193
+ });
1194
+ }) ``;
1195
+ const BackgroundSvg = styled(Icon) `
1196
+ ${({ theme, moleculeVariant }) => {
1197
+ var _a;
1198
+ const thisTheme = ((_a = theme === null || theme === void 0 ? void 0 : theme.cardTeaser) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) || {};
1199
+ return css `
1200
+ position: absolute;
1201
+ inset: 0;
1202
+ z-index: 0;
1203
+ width: 100%;
1204
+ height: 100%;
1205
+ border-radius: ${thisTheme === null || thisTheme === void 0 ? void 0 : thisTheme.borderRadius};
1201
1206
  `;
1202
1207
  }}
1203
1208
  `;
1204
1209
 
1205
- const CardTeaser = ({ moleculeVariant = "primary", company, year, title, checks, onClick, buttonName, svg, cardImageSrc, separator }) => {
1210
+ const CardTeaser = ({ moleculeVariant = "primary", company, year, title, checks, onClick, buttonName, svg, backgroundSvg, cardImageSrc, separator }) => {
1206
1211
  const compVariant = "CardTeaser-" + moleculeVariant;
1207
- return (jsx(CardBackgroundColor, Object.assign({ className: classNames(compVariant), moleculeVariant: compVariant }, { children: jsxs(CardContainer, Object.assign({ moleculeVariant: compVariant }, { children: [jsxs(LeftCardContainer, Object.assign({ moleculeVariant: compVariant }, { children: [(company || year) && (jsxs(HeadingCompanyDate, Object.assign({ moleculeVariant: compVariant }, { children: [company, " ", company && year && "•", " ", year] }))), jsx(HeadingTitle, Object.assign({ moleculeVariant: compVariant }, { children: title })), separator && jsx(Separator, { moleculeVariant: compVariant }), jsx(List, Object.assign({ moleculeVariant: compVariant }, { children: checks === null || checks === void 0 ? void 0 : checks.map((check, index) => (jsxs(ListItem, Object.assign({ moleculeVariant: compVariant }, { children: [svg && (jsx(IconCard, { moleculeVariant: compVariant, svg: svg })), jsx(TextListItem, Object.assign({ moleculeVariant: compVariant }, { children: check }))] }), index))) })), buttonName && buttonName.length > 0 && (jsx(ButtonCardContainer, { children: jsx(ButtonCard, Object.assign({ moleculeVariant: compVariant, onClick: onClick }, { children: buttonName })) }))] })), jsx(ImageContainer, { children: jsx(Image, { moleculeVariant: compVariant, src: cardImageSrc, alt: "Experience" }) })] })) })));
1212
+ return (jsxs(CardBackgroundColor, Object.assign({ className: classNames(compVariant), moleculeVariant: compVariant }, { children: [backgroundSvg && (jsx(BackgroundSvg, { moleculeVariant: compVariant, svg: backgroundSvg })), jsxs(CardContainer, Object.assign({ moleculeVariant: compVariant }, { children: [jsxs(LeftCardContainer, Object.assign({ moleculeVariant: compVariant }, { children: [(company || year) && (jsx(GradientStyle, Object.assign({ moleculeVariant: "primary" }, { children: jsxs(HeadingCompanyDate, Object.assign({ moleculeVariant: compVariant }, { children: [company, " ", company && year && "•", " ", year] })) }))), jsx(HeadingTitle, Object.assign({ moleculeVariant: compVariant }, { children: title })), separator && jsx(Separator, { moleculeVariant: compVariant }), jsx(List, Object.assign({ moleculeVariant: compVariant }, { children: checks === null || checks === void 0 ? void 0 : checks.map((check, index) => (jsxs(ListItem, Object.assign({ moleculeVariant: compVariant }, { children: [svg && (jsx(IconCard, { moleculeVariant: compVariant, svg: svg })), jsx(TextListItem, Object.assign({ moleculeVariant: compVariant }, { children: check }))] }), index))) })), buttonName && buttonName.length > 0 && (jsx(ButtonCardContainer, { children: jsx(ButtonCard, Object.assign({ moleculeVariant: compVariant, onClick: onClick }, { children: buttonName })) }))] })), jsx(ImageContainer, { children: jsx(Image, { moleculeVariant: compVariant, src: cardImageSrc, alt: "Experience" }) })] }))] })));
1208
1213
  };
1209
1214
 
1210
1215
  const scroll = keyframes `
@@ -1480,7 +1485,6 @@ const AccordionTitle = styled.button `
1480
1485
  const thisTheme = ((_a = theme === null || theme === void 0 ? void 0 : theme.accordion) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) || {};
1481
1486
  return css `
1482
1487
  all: unset;
1483
- user-select: text;
1484
1488
  width: 100%;
1485
1489
  display: ${(thisTheme === null || thisTheme === void 0 ? void 0 : thisTheme.display) || "flex"};
1486
1490
  align-items: ${(thisTheme === null || thisTheme === void 0 ? void 0 : thisTheme.alignItems) || "center"};
@@ -1529,16 +1533,13 @@ const AtomHeading = styled(Heading).attrs(({ theme, moleculeVariant }) => {
1529
1533
  });
1530
1534
  }) ``;
1531
1535
  const AtomIcon = styled(Icon).attrs(({ theme, moleculeVariant }) => {
1532
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2;
1536
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
1533
1537
  return ({
1534
1538
  variant: (_c = (_b = (_a = theme === null || theme === void 0 ? void 0 : theme.accordion) === null || _a === void 0 ? void 0 : _a[moleculeVariant]) === null || _b === void 0 ? void 0 : _b.atomIcon) === null || _c === void 0 ? void 0 : _c.variant,
1535
1539
  size: (_f = (_e = (_d = theme === null || theme === void 0 ? void 0 : theme.accordion) === null || _d === void 0 ? void 0 : _d[moleculeVariant]) === null || _e === void 0 ? void 0 : _e.atomIcon) === null || _f === void 0 ? void 0 : _f.size,
1536
1540
  color: (_j = (_h = (_g = theme === null || theme === void 0 ? void 0 : theme.accordion) === null || _g === void 0 ? void 0 : _g[moleculeVariant]) === null || _h === void 0 ? void 0 : _h.atomIcon) === null || _j === void 0 ? void 0 : _j.color,
1537
1541
  fill: (_m = (_l = (_k = theme === null || theme === void 0 ? void 0 : theme.accordion) === null || _k === void 0 ? void 0 : _k[moleculeVariant]) === null || _l === void 0 ? void 0 : _l.atomIcon) === null || _m === void 0 ? void 0 : _m.fill,
1538
- stroke: (_q = (_p = (_o = theme === null || theme === void 0 ? void 0 : theme.accordion) === null || _o === void 0 ? void 0 : _o[moleculeVariant]) === null || _p === void 0 ? void 0 : _p.atomIcon) === null || _q === void 0 ? void 0 : _q.stroke,
1539
- hoverColor: (_u = (_t = (_s = (_r = theme === null || theme === void 0 ? void 0 : theme.accordion) === null || _r === void 0 ? void 0 : _r[moleculeVariant]) === null || _s === void 0 ? void 0 : _s.atomIcon) === null || _t === void 0 ? void 0 : _t.hover) === null || _u === void 0 ? void 0 : _u.color,
1540
- hoverFill: (_y = (_x = (_w = (_v = theme === null || theme === void 0 ? void 0 : theme.accordion) === null || _v === void 0 ? void 0 : _v[moleculeVariant]) === null || _w === void 0 ? void 0 : _w.atomIcon) === null || _x === void 0 ? void 0 : _x.hover) === null || _y === void 0 ? void 0 : _y.fill,
1541
- hoverStroke: (_2 = (_1 = (_0 = (_z = theme === null || theme === void 0 ? void 0 : theme.accordion) === null || _z === void 0 ? void 0 : _z[moleculeVariant]) === null || _0 === void 0 ? void 0 : _0.atomIcon) === null || _1 === void 0 ? void 0 : _1.hover) === null || _2 === void 0 ? void 0 : _2.stroke
1542
+ stroke: (_q = (_p = (_o = theme === null || theme === void 0 ? void 0 : theme.accordion) === null || _o === void 0 ? void 0 : _o[moleculeVariant]) === null || _p === void 0 ? void 0 : _p.atomIcon) === null || _q === void 0 ? void 0 : _q.stroke
1542
1543
  });
1543
1544
  }) `
1544
1545
  min-width: fit-content;