index.wxs 388 B

123456789101112131415161718
  1. /* eslint-disable */
  2. var style = require('../wxs/style.wxs');
  3. var addUnit = require('../wxs/add-unit.wxs');
  4. function rootStyle(data) {
  5. return style({
  6. color: data.color,
  7. 'background-color': data.backgroundColor,
  8. background: data.background,
  9. borderRadius: data.radius,
  10. height: data.height,
  11. width: data.width
  12. });
  13. }
  14. module.exports = {
  15. rootStyle: rootStyle,
  16. };