@popmenu/audio-player 0.120.0 → 0.122.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.es.js CHANGED
@@ -597,6 +597,8 @@ var getBorder = function (theme) { return function (props) {
597
597
  }
598
598
  return borderColor;
599
599
  }; };
600
+ // using `any` here is a bit of cheating but it doesn't matter since this doesn't depend on
601
+ // any component-specific props
600
602
  makeStyles$1(function (theme) { return ({
601
603
  root: {
602
604
  background: getBackground(theme),
@@ -783,6 +785,7 @@ var useLinkStyles = makeStyles$1(function (theme) { return ({
783
785
  },
784
786
  }); });
785
787
 
788
+ // eslint-disable-next-line react/display-name -- false positive
786
789
  var Link = forwardRef(function (props, ref) {
787
790
  var children = props.children, muiProps = __rest(props, ["children"]);
788
791
  var classes = useLinkStyles(props);