/* ============================================================ dudu · UI 图标单源(web 侧) Lucide 线条图标(ISC):24 网格、2px 圆头描边、currentColor。 新增图标:从 lucide.dev 复制 path → 在此登记 → icon-map.json 补跨端映射 → 登记簿(design/index.html)自动展示。 禁止在业务代码里内联 ——check-code 闸会拦。 ============================================================ */ /** 24 网格图标 path 片段(不含 外壳) */ export const icons = { /** 麦克风(识别/录音) */ mic: '', /** 对勾(完成/选中) */ check: '', /** 关闭 */ x: '', /** 添加图片(反馈附图) */ imagePlus: '', /** 钥匙(权限引导) */ key: '', /** 下拉箭头(Select 等展开指示) */ chevronDown: '', }; /** 品牌 mark(48 网格、3.5 圆头——圆嘴 + 三条声波,与 assets/logo-mark.svg 同构) */ export const logoMark = ''; /** 生成完整 字符串(框架无关,官网/innerHTML 场景用) */ export function svgIcon(name, { size = 16, sw = 2 } = {}) { const body = icons[name]; if (!body) throw new Error(`unknown icon: ${name}`); return ( `` ); }