Skip to content

Commit

Permalink
fix(VDatePickerControls): wrong icon types (#20121)
Browse files Browse the repository at this point in the history
  • Loading branch information
michalzaq12 authored Jul 9, 2024
1 parent 81bc1f4 commit 32efb8c
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ import './VDatePickerControls.sass'
import { VBtn } from '@/components/VBtn'
import { VSpacer } from '@/components/VGrid'

// Composables
import { IconValue } from '@/composables/icons'

// Utilities
import { computed } from 'vue'
import { genericComponent, propsFactory, useRender } from '@/util'
Expand All @@ -22,15 +25,15 @@ export const makeVDatePickerControlsProps = propsFactory({
default: false,
},
nextIcon: {
type: [String],
type: IconValue,
default: '$next',
},
prevIcon: {
type: [String],
type: IconValue,
default: '$prev',
},
modeIcon: {
type: [String],
type: IconValue,
default: '$subgroup',
},
text: String,
Expand Down

0 comments on commit 32efb8c

Please sign in to comment.