@popmenu/dashboard 0.121.0 → 0.123.0

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/build/index.js CHANGED
@@ -485,6 +485,8 @@ var getBorder = function (theme) { return function (props) {
485
485
  }
486
486
  return borderColor;
487
487
  }; };
488
+ // using `any` here is a bit of cheating but it doesn't matter since this doesn't depend on
489
+ // any component-specific props
488
490
  styles.makeStyles(function (theme) { return ({
489
491
  root: {
490
492
  background: getBackground(theme),
@@ -671,6 +673,7 @@ var useLinkStyles = styles.makeStyles(function (theme) { return ({
671
673
  },
672
674
  }); });
673
675
 
676
+ // eslint-disable-next-line react/display-name -- false positive
674
677
  var Link = React.forwardRef(function (props, ref) {
675
678
  var children = props.children, muiProps = __rest(props, ["children"]);
676
679
  var classes = useLinkStyles(props);