94 lines
2.3 KiB
TypeScript
94 lines
2.3 KiB
TypeScript
import {
|
|
AliwangwangFilled,
|
|
AndroidFilled,
|
|
AppleFilled,
|
|
AppstoreFilled,
|
|
AuditOutlined,
|
|
BankFilled,
|
|
BankOutlined,
|
|
BarChartOutlined,
|
|
BarcodeOutlined,
|
|
BellFilled,
|
|
ChromeFilled,
|
|
ClusterOutlined,
|
|
ControlOutlined,
|
|
CreditCardOutlined,
|
|
CustomerServiceFilled,
|
|
FolderOpenFilled,
|
|
HeartFilled,
|
|
HomeFilled,
|
|
HourglassFilled,
|
|
IeSquareFilled,
|
|
NotificationFilled,
|
|
OpenAIFilled,
|
|
ReadFilled,
|
|
RocketFilled,
|
|
SafetyCertificateFilled,
|
|
ScheduleFilled,
|
|
SettingFilled,
|
|
SettingOutlined,
|
|
ShopFilled,
|
|
ShopOutlined,
|
|
StarFilled,
|
|
TruckFilled,
|
|
TwitchFilled,
|
|
UnlockFilled,
|
|
UserOutlined,
|
|
WalletFilled,
|
|
WindowsFilled,
|
|
YoutubeFilled,
|
|
} from '@ant-design/icons';
|
|
|
|
export type MyIconsType =
|
|
| 'BarcodeOutlined'
|
|
| 'AuditOutlined'
|
|
| 'ShopOutlined'
|
|
| 'BarChartOutlined'
|
|
| 'SettingOutlined'
|
|
| 'ControlOutlined'
|
|
| 'ClusterOutlined'
|
|
| 'BankOutlined'
|
|
| 'UserOutlined'
|
|
| 'CreditCardOutlined';
|
|
|
|
export const MyIcons = {
|
|
BarcodeOutlined: <BarcodeOutlined />,
|
|
AuditOutlined: <AuditOutlined />,
|
|
ShopOutlined: <ShopOutlined />,
|
|
BarChartOutlined: <BarChartOutlined />,
|
|
SettingOutlined: <SettingOutlined />,
|
|
ControlOutlined: <ControlOutlined />,
|
|
ClusterOutlined: <ClusterOutlined />,
|
|
BankOutlined: <BankOutlined />,
|
|
UserOutlined: <UserOutlined />,
|
|
CreditCardOutlined: <CreditCardOutlined />,
|
|
AndroidFilled: <AndroidFilled />,
|
|
AppleFilled: <AppleFilled />,
|
|
WindowsFilled: <WindowsFilled />,
|
|
ChromeFilled: <ChromeFilled />,
|
|
AliwangwangFilled: <AliwangwangFilled />,
|
|
OpenAIFilled: <OpenAIFilled />,
|
|
TwitchFilled: <TwitchFilled />,
|
|
YoutubeFilled: <YoutubeFilled />,
|
|
HeartFilled: <HeartFilled />,
|
|
IeSquareFilled: <IeSquareFilled />,
|
|
TruckFilled: <TruckFilled />,
|
|
UnlockFilled: <UnlockFilled />,
|
|
AppstoreFilled: <AppstoreFilled />,
|
|
BellFilled: <BellFilled />,
|
|
CustomerServiceFilled: <CustomerServiceFilled />,
|
|
WalletFilled: <WalletFilled />,
|
|
StarFilled: <StarFilled />,
|
|
SafetyCertificateFilled: <SafetyCertificateFilled />,
|
|
FolderOpenFilled: <FolderOpenFilled />,
|
|
ScheduleFilled: <ScheduleFilled />,
|
|
HourglassFilled: <HourglassFilled />,
|
|
BankFilled: <BankFilled />,
|
|
ShopFilled: <ShopFilled />,
|
|
HomeFilled: <HomeFilled />,
|
|
SettingFilled: <SettingFilled />,
|
|
ReadFilled: <ReadFilled />,
|
|
RocketFilled: <RocketFilled />,
|
|
NotificationFilled: <NotificationFilled />,
|
|
};
|