snabbdom-material
Version:
Stateless UI components for snabbdom that follow material design
30 lines (28 loc) • 629 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function (variables) {
return {
lightWaves: variables.checkboxLightWaves,
label: {
display: 'inline-block',
cursor: 'pointer',
margin: '14px 0',
fontSize: '18px'
},
icon: {
color: variables.checkboxIconColor,
position: 'relative',
top: '3px',
display: 'inline-block',
margin: '-14px -4px -14px -14px',
paddingTop: '7px',
width: '48px',
height: '48px'
},
iconSelected: {
color: variables.checkboxIconSelectedColor
}
};
};