File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
packages/vuetify/src/components/VDatePicker Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ import './VDatePickerControls.sass'
5
5
import { VBtn } from '@/components/VBtn'
6
6
import { VSpacer } from '@/components/VGrid'
7
7
8
+ // Composables
9
+ import { IconValue } from '@/composables/icons'
10
+
8
11
// Utilities
9
12
import { computed } from 'vue'
10
13
import { genericComponent , propsFactory , useRender } from '@/util'
@@ -22,15 +25,15 @@ export const makeVDatePickerControlsProps = propsFactory({
22
25
default : false ,
23
26
} ,
24
27
nextIcon : {
25
- type : [ String ] ,
28
+ type : IconValue ,
26
29
default : '$next' ,
27
30
} ,
28
31
prevIcon : {
29
- type : [ String ] ,
32
+ type : IconValue ,
30
33
default : '$prev' ,
31
34
} ,
32
35
modeIcon : {
33
- type : [ String ] ,
36
+ type : IconValue ,
34
37
default : '$subgroup' ,
35
38
} ,
36
39
text : String ,
You can’t perform that action at this time.
0 commit comments