Skip to content

Commit

Permalink
fix(VDataTableFooter): wrong icon types (#20107)
Browse files Browse the repository at this point in the history
  • Loading branch information
michalzaq12 committed Jul 9, 2024
1 parent 5385260 commit 5676e18
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { VSelect } from '@/components/VSelect'

// Composables
import { usePagination } from './composables/paginate'
import { IconValue } from '@/composables/icons'
import { useLocale } from '@/composables/locale'

// Utilities
Expand All @@ -18,19 +19,19 @@ import type { PropType } from 'vue'

export const makeVDataTableFooterProps = propsFactory({
prevIcon: {
type: String,
type: IconValue,
default: '$prev',
},
nextIcon: {
type: String,
type: IconValue,
default: '$next',
},
firstIcon: {
type: String,
type: IconValue,
default: '$first',
},
lastIcon: {
type: String,
type: IconValue,
default: '$last',
},
itemsPerPageText: {
Expand Down

0 comments on commit 5676e18

Please sign in to comment.