UNPKG

450 BJavaScriptView Raw
1export default {
2 props: {
3 icon: {
4 type: String,
5 default: 'checked',
6 },
7 iconInverse: {
8 type: String,
9 default: 'check',
10 },
11 iconDisabled: {
12 type: String,
13 default: 'check-disabled',
14 },
15 iconSvg: {
16 type: Boolean,
17 default: false,
18 },
19 iconSize: {
20 type: String,
21 default: 'md',
22 },
23 iconPosition: {
24 type: String,
25 default: 'right',
26 },
27 },
28}