1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
| import { h } from 'vue'
| import { SvgIcon } from '@/components/common'
|
| export const useIconRender = () => {
| interface IconConfig {
| icon?: string
| color?: string
| fontSize?: number
| }
|
| interface IconStyle {
| color?: string
| fontSize?: string
| }
|
| const iconRender = (config: IconConfig) => {
| const { color, fontSize, icon } = config
|
| const style: IconStyle = {}
|
| if (color)
| style.color = color
|
| if (fontSize)
| style.fontSize = `${fontSize}px`
|
| if (!icon)
| window.console.warn('iconRender: icon is required')
|
| return () => h(SvgIcon, { icon, style })
| }
|
| return {
| iconRender,
| }
| }
|
|