fui-material 2.5.16 → 2.5.17

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.
@@ -4143,7 +4143,7 @@ const FArrowRightCircleIcon = React.forwardRef(({
4143
4143
  st,
4144
4144
  id,
4145
4145
  className,
4146
- handleClose,
4146
+ handleClick,
4147
4147
  ["data-testid"]: dataTestId,
4148
4148
  ...props
4149
4149
  }, ref) => {
@@ -4153,9 +4153,9 @@ const FArrowRightCircleIcon = React.forwardRef(({
4153
4153
  ref,
4154
4154
  width: size,
4155
4155
  style: st,
4156
- className: `f-icon ${handleClose ? " clicking-icon" : ""} ${color} ${className || ""}`,
4156
+ className: `f-icon ${handleClick ? " clicking-icon" : ""} ${color} ${className || ""}`,
4157
4157
  viewBox: "0 0 16 16",
4158
- onClick: handleClose,
4158
+ onClick: handleClick,
4159
4159
  id,
4160
4160
  "data-testid": dataTestId,
4161
4161
  ...props,