24 lines
379 B
TypeScript
24 lines
379 B
TypeScript
// Custom icon static resources
|
|
|
|
import {
|
|
BulbOutline,
|
|
ExceptionOutline,
|
|
FileZipOutline,
|
|
FolderOutline,
|
|
InfoOutline,
|
|
LinkOutline,
|
|
ProfileOutline,
|
|
MobileOutline
|
|
} from '@ant-design/icons-angular/icons';
|
|
|
|
export const ICONS = [
|
|
InfoOutline,
|
|
BulbOutline,
|
|
ProfileOutline,
|
|
ExceptionOutline,
|
|
LinkOutline,
|
|
FolderOutline,
|
|
FileZipOutline,
|
|
MobileOutline
|
|
];
|