react-mui-table
Version:
A react component that takes data & style parameters, and renders a Material UI table.
33 lines (27 loc) • 732 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.searchStyles = undefined;
var _prefixer = require('../../util/prefixer');
var _prefixer2 = _interopRequireDefault(_prefixer);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var unPrefixedSearchStyles = {
searchBar: {
marginBottom: 15
},
icon: {
width: 21,
color: 'rgba(0, 0, 0, 0.54)',
padding: '0 5px 0 21px',
position: 'relative',
top: 7
},
input: {
color: 'rgba(0, 0, 0, .54)',
fontWeight: '400',
fontSize: 14,
width: 'calc(100% - 50px)'
}
};
var searchStyles = exports.searchStyles = _prefixer2.default.prefix(unPrefixedSearchStyles);