fis-component 0.0.78 → 0.0.79

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/esm/index.js CHANGED
@@ -70689,7 +70689,7 @@ const FISChipButton = forwardRef((props, ref) => {
70689
70689
  return (jsxs(DivContainer, { ...rest, ref: ref, "$size": size, "$theme": theme, "$disabled": disabled, className: classNames(className, {
70690
70690
  selected,
70691
70691
  "no-padding": closeable,
70692
- "no-padding-horizontal": !closeable && !icon && !srcAvatar,
70692
+ // "no-padding-horizontal": !closeable && !icon && !srcAvatar,
70693
70693
  }), children: [srcAvatar ? (jsx(FISAvatar, { size: avatarSize, src: srcAvatar, disabled: disabled, dotBadge: !disabled })) : (icon && (jsx(DivIcon$1, { "$size": size, "$theme": theme, "$disabled": disabled, children: icon }))), jsx(SpanLabel$1, { "$size": size, "$theme": theme, "$disabled": disabled, className: classNames({
70694
70694
  "no-padding": closeable,
70695
70695
  }), children: label }), closeable && (jsx(DivCloseIcon, { "$size": size, "$disabled": disabled, className: "button-icon", children: jsx(FISIconButton, { size: size, variant: "tertiary-invisible", icon: jsx(CloseChipIcon, {}), onClick: onClickClose, disabled: disabled }) }))] }));