icon.js 765 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * @Author : LQ
  3. * @Description :
  4. * @version : 1.0
  5. * @Date : 2021-08-20 16:44:21
  6. * @LastAuthor : LQ
  7. * @lastTime : 2021-08-20 18:00:14
  8. * @FilePath : /u-view2.0/uview-ui/libs/config/props/icon.js
  9. */
  10. import config from '../config'
  11. const {
  12. color
  13. } = config
  14. export default {
  15. // icon组件
  16. icon: {
  17. name: '',
  18. color: color['u-content-color'],
  19. size: '16px',
  20. bold: false,
  21. index: '',
  22. hoverClass: '',
  23. customPrefix: 'uicon',
  24. label: '',
  25. labelPos: 'right',
  26. labelSize: '15px',
  27. labelColor: color['u-content-color'],
  28. space: '3px',
  29. imgMode: '',
  30. width: '',
  31. height: '',
  32. top: 0,
  33. stop: false
  34. }
  35. }