| 12345678910111213141516171819202122232425262728293031323334353637383940 | /** * * Icon Library for <zui-svg-icon> usage * * Auto generated by /tools/generate-svg-icon.js * * !!! DO NOT MODIFY MANUALLY !!! * * @datetime __datetime__ * */// == collection startconst collections = {  default: __default__,}// == collection endconst svglib = {}svglib.registerCollection = (key, lib) => {  if (collections[key]) {    return  }  if (typeof lib.registerCollection === 'function') {    collections[key] = lib.getCollection('default')  } else {    collections[key] = lib  }}svglib.getCollection = (key = 'default') => {  if (!collections[key]) throw new Error(`没有找到名为 ${key} 的图标库。`)  return collections[key]}export const SvgIconLib = svglibexport default SvgIconLib
 |