From 490025a98126e3e84e8eb1dc68b1fca228fdda3a Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Wed, 31 May 2023 18:31:15 +0200 Subject: [PATCH] docs: add Table icons in theming icons section --- docs/content/1.getting-started/3.theming.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/content/1.getting-started/3.theming.md b/docs/content/1.getting-started/3.theming.md index 63799e9f..c8eb87d8 100644 --- a/docs/content/1.getting-started/3.theming.md +++ b/docs/content/1.getting-started/3.theming.md @@ -190,6 +190,18 @@ export default defineAppConfig({ icon: 'i-octicon-search-24' } } + }, + table: { + default: { + sortAscIcon: 'i-octicon-sort-asc-24', + sortDescIcon: 'i-octicon-sort-desc-24', + sortButton: { + icon: 'i-octicon-arrow-switch-24' + }, + emptyState: { + icon: 'i-octicon-database-24' + } + } } } })