docs: add missing icons to override in theming

This commit is contained in:
Benjamin Canac
2023-06-15 11:28:41 +02:00
parent 38ecb088ec
commit dfccbcf1a9

View File

@@ -273,10 +273,23 @@ export default defineAppConfig({
sortButton: { sortButton: {
icon: 'i-octicon-arrow-switch-24' icon: 'i-octicon-arrow-switch-24'
}, },
loadingState: {
icon: 'i-octicon-sync-24'
},
emptyState: { emptyState: {
icon: 'i-octicon-database-24' icon: 'i-octicon-database-24'
} }
} }
},
pagination: {
default: {
prevButton: {
icon: 'i-octicon-arrow-left-24'
},
nextButton: {
icon: 'i-octicon-arrow-right-24'
}
}
} }
} }
}) })