blue-react 8.4.2 → 8.4.3

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.
@@ -39,7 +39,16 @@ function ActionMenu(props) {
39
39
  children = props.children,
40
40
  className = props.className,
41
41
  _props$toggleIcon = props.toggleIcon,
42
- toggleIcon = _props$toggleIcon === void 0 ? "bi-iconmonstr-menu-7" : _props$toggleIcon;
42
+ toggleIcon = _props$toggleIcon === void 0 ? /*#__PURE__*/_react.default.createElement("svg", {
43
+ xmlns: "http://www.w3.org/2000/svg",
44
+ width: "16",
45
+ height: "16",
46
+ fill: "currentColor",
47
+ className: "bi bi-three-dots-vertical",
48
+ viewBox: "0 0 16 16"
49
+ }, /*#__PURE__*/_react.default.createElement("path", {
50
+ d: "M9.5 13a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zm0-5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0zm0-5a1.5 1.5 0 11-3 0 1.5 1.5 0 013 0z"
51
+ })) : _props$toggleIcon;
43
52
 
44
53
  var _break = props.break || "lg";
45
54