From dfccbcf1a99b7601cddb3304ef6e72d4e8e61ec2 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 15 Jun 2023 11:28:41 +0200 Subject: [PATCH] docs: add missing icons to override in theming --- docs/content/1.getting-started/3.theming.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/content/1.getting-started/3.theming.md b/docs/content/1.getting-started/3.theming.md index c1c07552..35c92e39 100644 --- a/docs/content/1.getting-started/3.theming.md +++ b/docs/content/1.getting-started/3.theming.md @@ -273,10 +273,23 @@ export default defineAppConfig({ sortButton: { icon: 'i-octicon-arrow-switch-24' }, + loadingState: { + icon: 'i-octicon-sync-24' + }, emptyState: { icon: 'i-octicon-database-24' } } + }, + pagination: { + default: { + prevButton: { + icon: 'i-octicon-arrow-left-24' + }, + nextButton: { + icon: 'i-octicon-arrow-right-24' + } + } } } })