From bc8b79a38adcfb66fd5210d9d4edb56569d15210 Mon Sep 17 00:00:00 2001 From: xingyu4j Date: Mon, 19 May 2025 16:19:27 +0800 Subject: [PATCH] perf: action icon --- apps/web-antd/src/components/table-action/icons.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 apps/web-antd/src/components/table-action/icons.ts diff --git a/apps/web-antd/src/components/table-action/icons.ts b/apps/web-antd/src/components/table-action/icons.ts new file mode 100644 index 00000000..471b7eb8 --- /dev/null +++ b/apps/web-antd/src/components/table-action/icons.ts @@ -0,0 +1,12 @@ +export const ACTION_ICON = { + DOWNLOAD: 'lucide:download', + UPLOAD: 'lucide:upload', + ADD: 'lucide:plus', + EDIT: 'lucide:edit', + DELETE: 'lucide:trash', + REFRESH: 'lucide:refresh-cw', + SEARCH: 'lucide:search', + FILTER: 'lucide:filter', + MORE: 'lucide:ellipsis-vertical', + VIEW: 'lucide:eye', +};