(url)
| 4 | const ICON_BASE = 'https://registry.npmmirror.com/@lobehub/icons-static-svg/latest/files/icons' |
| 5 | |
| 6 | const createBrandIcon = (url) => { |
| 7 | const Icon = ({ size = 20 }) => |
| 8 | h('img', { src: url, style: { width: size + 'px', height: size + 'px' } }) |
| 9 | Icon.inheritAttrs = false |
| 10 | return Icon |
| 11 | } |
| 12 | |
| 13 | export const brandIcons = { |
| 14 | dify: createBrandIcon(`${ICON_BASE}/dify-color.svg`), |