icon.js 773 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * @Author : LQ
  3. * @Description :
  4. * @version : 3.0
  5. * @Date : 2021-08-20 16:44:21
  6. * @LastAuthor : jry
  7. * @lastTime : 2025-12-19 08:55:21
  8. * @FilePath : /uview-plus/libs/config/props/icon.js
  9. */
  10. import config from '../../libs/config/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. }