Initial commit: OneOS frontend based on yudao-ui-admin-vben
Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CI / CI OK (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
Some checks failed
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Lint (ubuntu-latest) (push) Has been cancelled
CI / Lint (windows-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CI / CI OK (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Deploy Website on push / Deploy Push Playground Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Docs Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Antd Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Element Ftp (push) Has been cancelled
Deploy Website on push / Deploy Push Naive Ftp (push) Has been cancelled
Deploy Website on push / Rerun on failure (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
This commit is contained in:
67
packages/icons/src/iconify/index.ts
Normal file
67
packages/icons/src/iconify/index.ts
Normal file
@@ -0,0 +1,67 @@
|
||||
import { createIconifyIcon } from '@vben-core/icons';
|
||||
|
||||
export * from '@vben-core/icons';
|
||||
|
||||
export const MdiKeyboardEsc = createIconifyIcon('mdi:keyboard-esc');
|
||||
|
||||
export const MdiWechat = createIconifyIcon('mdi:wechat');
|
||||
|
||||
export const MdiGithub = createIconifyIcon('mdi:github');
|
||||
|
||||
export const MdiGoogle = createIconifyIcon('mdi:google');
|
||||
|
||||
export const MdiQqchat = createIconifyIcon('mdi:qqchat');
|
||||
|
||||
export const MdiCheckboxMarkedCircleOutline = createIconifyIcon(
|
||||
'mdi:checkbox-marked-circle-outline',
|
||||
);
|
||||
|
||||
export const MsRefresh = createIconifyIcon('material-symbols:refresh-rounded');
|
||||
|
||||
export const TMinimize = createIconifyIcon('tabler:arrows-minimize');
|
||||
|
||||
export const AntdProfileOutlined = createIconifyIcon(
|
||||
'ant-design:profile-outlined',
|
||||
);
|
||||
|
||||
export const FolderOpenOutlined = createIconifyIcon(
|
||||
'ant-design:folder-open-outlined',
|
||||
);
|
||||
|
||||
export const DownloadOutlined = createIconifyIcon(
|
||||
'ant-design:download-outlined',
|
||||
);
|
||||
|
||||
export const EyeOutlined = createIconifyIcon('ant-design:eye-outlined');
|
||||
|
||||
export const ApiOutlined = createIconifyIcon('ant-design:api-outlined');
|
||||
|
||||
export const ZoomOutOutlined = createIconifyIcon(
|
||||
'ant-design:zoom-out-outlined',
|
||||
);
|
||||
|
||||
export const ZoomInOutlined = createIconifyIcon('ant-design:zoom-in-outlined');
|
||||
|
||||
export const UndoOutlined = createIconifyIcon('ant-design:undo-outlined');
|
||||
|
||||
export const RedoOutlined = createIconifyIcon('ant-design:redo-outlined');
|
||||
|
||||
export const ReloadOutlined = createIconifyIcon('ant-design:reload-outlined');
|
||||
|
||||
export const AlignLeftOutlined = createIconifyIcon(
|
||||
'ant-design:align-left-outlined',
|
||||
);
|
||||
|
||||
export const WarningOutlined = createIconifyIcon('ant-design:warning-outlined');
|
||||
|
||||
export const RiDingding = createIconifyIcon('ri:dingding-fill');
|
||||
|
||||
export const MenuOutlined = createIconifyIcon('ant-design:menu-outlined');
|
||||
|
||||
export const PlusOutlined = createIconifyIcon('ant-design:plus-outlined');
|
||||
|
||||
export const CloseCircleFilled = createIconifyIcon(
|
||||
'ant-design:close-circle-filled',
|
||||
);
|
||||
|
||||
export const SelectOutlined = createIconifyIcon('ant-design:select-outlined');
|
||||
Reference in New Issue
Block a user