UNPKG

cloudhub-components

Version:
37 lines (35 loc) 718 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = IconButton; // ---------------------------------------------------------------------- function IconButton(_ref) { var theme = _ref.theme; return { MuiIconButton: { variants: [{ props: { color: 'default' }, style: { '&:hover': { backgroundColor: theme.palette.action.hover } } }, { props: { color: 'inherit' }, style: { '&:hover': { backgroundColor: theme.palette.action.hover } } }], styleOverrides: { root: {} } } }; }