This is an automated email from the ASF dual-hosted git repository.
diegopucci pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 8dd39502f6 feat(Icons): Add HistoryOutlined (#33863)
8dd39502f6 is described below
commit 8dd39502f6621045b328cbad5f18fd9b9211e2e1
Author: Mehmet Salih Yavuz <[email protected]>
AuthorDate: Mon Jun 23 15:06:46 2025 +0300
feat(Icons): Add HistoryOutlined (#33863)
---
.../packages/superset-ui-core/src/components/Icons/AntdEnhanced.tsx | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/superset-frontend/packages/superset-ui-core/src/components/Icons/AntdEnhanced.tsx
b/superset-frontend/packages/superset-ui-core/src/components/Icons/AntdEnhanced.tsx
index d765f6cb4b..6a6c8d4b88 100644
---
a/superset-frontend/packages/superset-ui-core/src/components/Icons/AntdEnhanced.tsx
+++
b/superset-frontend/packages/superset-ui-core/src/components/Icons/AntdEnhanced.tsx
@@ -144,6 +144,7 @@ import {
FormatPainterOutlined,
ExportOutlined,
CompressOutlined,
+ HistoryOutlined,
} from '@ant-design/icons';
import { FC } from 'react';
import { IconType } from './types';
@@ -277,6 +278,7 @@ const AntdIcons = {
FormatPainterOutlined,
ExportOutlined,
CompressOutlined,
+ HistoryOutlined,
} as const;
type AntdIconNames = keyof typeof AntdIcons;