@thecb/components 11.2.11 → 11.2.12

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.
package/dist/index.cjs.js CHANGED
@@ -42171,6 +42171,8 @@ var LinkCard = function LinkCard(_ref) {
42171
42171
  title = _ref$title === void 0 ? "Test Workflow" : _ref$title,
42172
42172
  _ref$subtitle = _ref.subtitle,
42173
42173
  subtitle = _ref$subtitle === void 0 ? "Link your benefit plan" : _ref$subtitle,
42174
+ _ref$subtitlePadding = _ref.subtitlePadding,
42175
+ subtitlePadding = _ref$subtitlePadding === void 0 ? "0 0 40px" : _ref$subtitlePadding,
42174
42176
  showLeft = _ref.showLeft,
42175
42177
  leftContent = _ref.leftContent,
42176
42178
  showRight = _ref.showRight,
@@ -42185,6 +42187,8 @@ var LinkCard = function LinkCard(_ref) {
42185
42187
  themeValues = _ref.themeValues,
42186
42188
  _ref$titleVariant = _ref.titleVariant,
42187
42189
  titleVariant = _ref$titleVariant === void 0 ? "h3" : _ref$titleVariant,
42190
+ _ref$titlePadding = _ref.titlePadding,
42191
+ titlePadding = _ref$titlePadding === void 0 ? "0" : _ref$titlePadding,
42188
42192
  _ref$disabled = _ref.disabled,
42189
42193
  disabled = _ref$disabled === void 0 ? false : _ref$disabled;
42190
42194
  var _useContext = React.useContext(styled.ThemeContext),
@@ -42217,7 +42221,7 @@ var LinkCard = function LinkCard(_ref) {
42217
42221
  },
42218
42222
  fullHeight: true
42219
42223
  }, /*#__PURE__*/React__default.createElement(Box, {
42220
- padding: 0,
42224
+ padding: titlePadding,
42221
42225
  width: "100%"
42222
42226
  }, /*#__PURE__*/React__default.createElement(Title$2, {
42223
42227
  variant: titleVariant,
@@ -42225,7 +42229,7 @@ var LinkCard = function LinkCard(_ref) {
42225
42229
  margin: 0,
42226
42230
  isDisabled: disabled
42227
42231
  }, title)), /*#__PURE__*/React__default.createElement(Box, {
42228
- padding: "0 0 0.5rem",
42232
+ padding: subtitlePadding,
42229
42233
  width: "100%"
42230
42234
  }, /*#__PURE__*/React__default.createElement(Subtitle, {
42231
42235
  variant: "pS",