1
- // import styled from 'vue-styled-components'
2
1
import { Box } from '../../lib/core/'
3
2
import iconPaths from '../../lib/plugin/iconsPaths'
4
3
import { forwardProps } from '../../lib/utils'
@@ -7,31 +6,12 @@ import { baseProps } from '../../lib/config/props'
7
6
8
7
const fallbackIcon = iconPaths [ 'question-outline' ]
9
8
10
- /**
11
- * Features:
12
- * 1) Register custom icons
13
- * 2) Support Font Awesome icons.
14
- * 3) Support MD icons.
15
- *
16
- * CUSTOM ICONS:
17
- * - All icons exist as object.
18
- * - Load them in at project build time
19
- * - Should be extendable by users.
20
- * - If "name" prop is provided, search icons config for icon.
21
- *
22
- * SUPPORT FONTAWESOME/MDI
23
- * - Provide Object/Array of Fontawesome components
24
- * - Iterate over array of components to globally register sprites as components
25
- * - Accept "use" prop to calculate reference to globally registered component and feed it to Box component
26
- * - ^^ Use "as" prop to render component passed.
27
- */
28
-
29
9
/**
30
10
* The Icon component renders SVGs for visual aid
31
11
*/
32
12
export default {
33
13
name : 'Icon' ,
34
- inject : [ '$theme' , '$colorMode ' ] ,
14
+ inject : [ '$theme' , '$icons ' ] ,
35
15
props : {
36
16
name : {
37
17
type : [ String , Array ]
@@ -59,9 +39,7 @@ export default {
59
39
render ( h ) {
60
40
let icon , viewBox
61
41
if ( this . name ) {
62
- icon = iconPaths [ this . name ]
63
- } else if ( this . use ) {
64
- // icon =
42
+ icon = this . $icons [ this . name ]
65
43
} else {
66
44
console . warn ( `[KiwiIcon]: You need to provide the "name" or "use" prop to for the Icon component` )
67
45
}
0 commit comments