@popmenu/dashboard 0.46.0 → 0.47.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
@@ -416,7 +416,7 @@ Checkbox.displayName = 'Checkbox';
416
416
 
417
417
  var getBackground = function (theme) { return function (props) {
418
418
  var variant = props.variant, severity = props.severity;
419
- var background;
419
+ var background = theme.palette.grey[100];
420
420
  var backgrounds = {
421
421
  outlined: 'none',
422
422
  error: 'error.main',
@@ -485,6 +485,9 @@ styles.makeStyles(function (theme) { return ({
485
485
  height: theme.spacing(2),
486
486
  width: theme.spacing(2),
487
487
  },
488
+ deleteIcon: {
489
+ color: theme.palette.grey[500],
490
+ },
488
491
  }); });
489
492
 
490
493
  var defaultTypographyProps = {