@activecollab/components 2.0.301 → 2.0.303

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.js CHANGED
@@ -10723,7 +10723,7 @@
10723
10723
  var _excluded$1Q = ["gradient"];
10724
10724
 
10725
10725
  /**
10726
- * @component StopCircleIcon
10726
+ * @component StopIcon
10727
10727
  * @description
10728
10728
  *
10729
10729
  * The React Icon component is a visual element that displays an icon to represent a concept, object, or action.
@@ -10735,12 +10735,12 @@
10735
10735
  *
10736
10736
  * @example
10737
10737
  * return (
10738
- * <StopCircleIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
10738
+ * <StopIcon gradient="linear-gradient(135deg, #4da2ed, #f72222)" />
10739
10739
  * )
10740
10740
  *
10741
10741
  * @example
10742
10742
  * return (
10743
- * <StopCircleIcon className="mr-2" />
10743
+ * <StopIcon className="mr-2" />
10744
10744
  * )
10745
10745
  *
10746
10746
  * @see
@@ -10748,25 +10748,26 @@
10748
10748
  * @see
10749
10749
  * https://design.activecollab.com/docs/foundations/icons
10750
10750
  */
10751
- var StopCircleIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
10751
+ var StopIcon = /*#__PURE__*/React__default["default"].forwardRef(function (_ref, svgRef) {
10752
10752
  var gradient = _ref.gradient,
10753
10753
  props = _objectWithoutProperties(_ref, _excluded$1Q);
10754
10754
  return /*#__PURE__*/React__default["default"].createElement("svg", _extends({
10755
+ width: 24,
10756
+ height: 24,
10757
+ viewBox: "0 0 24 24",
10755
10758
  xmlns: "http://www.w3.org/2000/svg",
10756
- width: 14,
10757
- height: 14,
10758
- "data-testid": "StopCircleIcon",
10759
+ "data-testid": "StopIcon",
10759
10760
  fill: gradient ? "url(#icon-gradient)" : props !== null && props !== void 0 && props.fill ? props.fill : "var(--color-theme-600)",
10760
10761
  focusable: false,
10761
10762
  ref: svgRef
10762
10763
  }, props), /*#__PURE__*/React__default["default"].createElement(GradientDefs, {
10763
10764
  gradient: gradient
10764
10765
  }), /*#__PURE__*/React__default["default"].createElement("path", {
10765
- d: "M7 0a7 7 0 100 14A7 7 0 007 0m3 9a1 1 0 01-1 1H5a1 1 0 01-1-1V5a1 1 0 011-1h4a1 1 0 011 1z"
10766
+ d: "M12 1.5a10.5 10.5 0 100 21 10.5 10.5 0 000-21zM16.5 15a1.5 1.5 0 01-1.5 1.5H9A1.5 1.5 0 017.5 15V9A1.5 1.5 0 019 7.5h6A1.5 1.5 0 0116.5 9v6z"
10766
10767
  }));
10767
10768
  });
10768
- StopCircleIcon.displayName = "StopCircleIcon";
10769
- var StopCircleIcon$1 = StopCircleIcon;
10769
+ StopIcon.displayName = "StopIcon";
10770
+ var StopIcon$1 = StopIcon;
10770
10771
 
10771
10772
  var _excluded$1P = ["gradient"];
10772
10773
 
@@ -25634,7 +25635,7 @@
25634
25635
  exports.Step = Step;
25635
25636
  exports.StepActionButton = StepActionButton;
25636
25637
  exports.Steps = Steps;
25637
- exports.StopCircleIcon = StopCircleIcon$1;
25638
+ exports.StopIcon = StopIcon$1;
25638
25639
  exports.StopwatchIcon = StopwatchIcon$1;
25639
25640
  exports.StyledInputTimeWrapper = StyledInputTimeWrapper;
25640
25641
  exports.SunIcon = SunIcon$1;