// == collection start const collections = { default: { "icons": { "USDT": [ "", 0, 1 ], "calendar": [ "", 2 ], "calendar_month_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24 1": [ "", 3 ], "cart": [ "", 2 ], "checkmark": [ "", 4 ], "checkmarkempty": [ "", 5 ], "checkmarkempty1": [ "", 2 ], "chevron-right": [ "", 2 ], "cjwt": [ "", 6 ], "closeempty1": [ "", 2 ], "cog-outline": [ "", 2 ], "copy": [ "", 7 ], "crm-angle-left": [ "", 2 ], "crm-bars-staggered": [ "", 2 ], "crm-building-columns": [ "", 2 ], "crm-chart-area": [ "", 2 ], "crm-circle-dollar-to-slot": [ "", 2 ], "crm-circle-user": [ "", 2 ], "crm-clock-rotate-left": [ "", 2 ], "crm-credit-card": [ "", 2 ], "crm-diagram": [ "", 2 ], "crm-download": [ "", 2 ], "crm-file": [ "", 2 ], "crm-headset": [ "", 2 ], "crm-house": [ "", 2 ], "crm-image": [ "", 2 ], "crm-leaf": [ "", 2 ], "crm-lock": [ "", 2 ], "crm-menu": [ "", 1, 8 ], "crm-photo-film": [ "", 2 ], "crm-plus": [ "", 2 ], "crm-star": [ "", 2 ], "crm-trash-can": [ "", 2 ], "crm-user-pen": [ "", 2 ], "crm-user": [ "", 2 ], "crm-users": [ "", 2 ], "crm-wallet": [ "", 2 ], "cwg-calendar": [ "", 2 ], "cwg-close": [ "", 9 ], "cwg-lang": [ "", 2 ], "cwg-order": [ "", 2 ], "cwg-right": [ "", 2 ], "cwg-search": [ "", 2 ], "cwg_undraw": [ "", 10, 11, 12, 1, 13 ], "download-filled": [ "", 2 ], "dqbb": [ "", 6 ], "dropdown": [ "", 6 ], "dw": [ "", 14 ], "email-outline": [ "", 2 ], "flame": [ "", 2 ], "gj": [ "", 15 ], "globe": [ "", 2 ], "gy": [ "", 6 ], "gzcalendar": [ "", 16 ], "handlingfee": [ "", 2 ], "history": [ "", 2 ], "icon-back": [ "", 6 ], "icon_KYC": [ "", 3 ], "icon_about us": [ "", 6 ], "icon_activate": [ "", 3 ], "icon_add": [ "", 3 ], "icon_bank": [ "", 6 ], "icon_buy": [ "", 3 ], "icon_card password reset": [ "", 3 ], "icon_card": [ "", 2 ], "icon_card_active": [ "", 12 ], "icon_delivery": [ "", 3 ], "icon_dropdown": [ "", 3 ], "icon_freeze": [ "", 3 ], "icon_history": [ "", 6 ], "icon_language": [ "", 5 ], "icon_logout": [ "", 6 ], "icon_more": [ "", 3 ], "icon_my": [ "", 2 ], "icon_my_active": [ "", 17 ], "icon_next": [ "", 3 ], "icon_ok": [ "", 18 ], "icon_personal certification": [ "", 6 ], "icon_receive": [ "", 3 ], "icon_recharge": [ "", 3 ], "icon_search": [ "", 3 ], "icon_sell": [ "", 3 ], "icon_send-1": [ "", 3 ], "icon_send": [ "", 3 ], "icon_set card password": [ "", 6 ], "icon_transfer": [ "", 6 ], "icon_unfreeze": [ "", 3 ], "icon_unvisiable": [ "", 3 ], "icon_upload": [ "", 3 ], "icon_visiable": [ "", 3 ], "icon_wallet": [ "", 19 ], "icon_wallet_active": [ "", 12 ], "icon_withdraw": [ "", 3 ], "info1": [ "", 2 ], "kksq": [ "", 6 ], "list": [ "", 2 ], "location": [ "", 5 ], "lock-outline": [ "", 2 ], "lock-reset": [ "", 2 ], "logout": [ "", 2 ], "mdi-logout": [ "", 6 ], "mdi-shield-lock-outline": [ "", 6 ], "mdi-web": [ "", 6 ], "minus-filled": [ "", 2 ], "nan": [ "", 2 ], "nv": [ "", 20 ], "paperclip": [ "", 21 ], "phone": [ "", 22 ], "phone1": [ "", 2 ], "plus-filled": [ "", 2 ], "qbye": [ "", 6 ], "qchc": [ "", 6 ], "redo": [ "", 2 ], "servicefee": [ "", 23 ], "shield-lock-open-outline": [ "", 2 ], "shop": [ "", 24 ], "sz": [ "", 6 ], "trending-down": [ "", 2 ], "verified": [ "", 25 ], "web": [ "", 2 ], "xgmm": [ "", 6 ], "xm": [ "", 26 ], "xxdz": [ "", 27 ], "xxtz": [ "", 6, 1 ], "ys": [ "", 6 ], "yszc": [ "", 6 ] }, "currentColor": "#22ac38", "$_colorPalette": [ "#2faf54", "#fff", "#22ac38", "#1f1f1f", "#231815", "#000", "#1a1a1a", "#595959", "#666", "#272536", "#f2f2f2", "#3f3d56", "#ea002a", "#e6e6e6", "#606060", "#4a576a", "#ccc", "#ff4766", "#4caf50", "#474747", "#3d3d63", "#8c8c8c", "#b2b2b2", "#292c33", "#030f09", "#272636", "#4e4e4e", "#333" ] }, } // == collection end const 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 = svglib export default SvgIconLib