icons.js 400 B

1234567891011121314151617181920
  1. /*
  2. * @Description:
  3. * @Author: zcf
  4. * @Date: 2022-02-08 17:24:53
  5. * @LastEditTime: 2022-02-14 17:26:38
  6. * @LastEditors: zcf
  7. */
  8. import Icons from 'unplugin-icons/vite'
  9. export default function createIcons() {
  10. return Icons({
  11. autoInstall: true,
  12. scale: 1,
  13. defaultStyle: `
  14. vertical-align: -0.15em;
  15. fill: currentColor;
  16. overflow: hidden;
  17. `
  18. })
  19. }