forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQIcon.json
More file actions
43 lines (36 loc) · 926 Bytes
/
QIcon.json
File metadata and controls
43 lines (36 loc) · 926 Bytes
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
37
38
39
40
41
42
43
{
"mixins": [ "composables/private/use-size" ],
"meta": {
"docsUrl": "https://v2.quasar.dev/vue-components/icon"
},
"props": {
"tag": {
"extends": "tag",
"desc": "HTML tag to render, unless no icon is supplied or it's an svg icon",
"default": "i",
"examples": [ "div", "i" ]
},
"name": {
"extends": "icon",
"category": "model"
},
"color": {
"extends": "color"
},
"left": {
"type": "Boolean",
"desc": "Useful if icon is on the left side of something: applies a standard margin on the right side of Icon",
"category": "content"
},
"right": {
"type": "Boolean",
"desc": "Useful if icon is on the right side of something: applies a standard margin on the left side of Icon",
"category": "content"
}
},
"slots": {
"default": {
"desc": "Suggestions: QTooltip or QMenu"
}
}
}