|
| 1 | +import { |
| 2 | + AddUserProfileDark, |
| 3 | + AddUserProfileLight, |
| 4 | + bundleIllustrationSmart, |
| 5 | + DataDark, |
| 6 | + DataLight, |
| 7 | + DevicesDark, |
| 8 | + DevicesLight, |
| 9 | + EmptyFolderDark, |
| 10 | + EmptyFolderLight, |
| 11 | + EmptyGeneralDark, |
| 12 | + EmptyGeneralLight, |
| 13 | + EmptySpaceDark, |
| 14 | + EmptySpaceLight, |
| 15 | + FileMissingDark, |
| 16 | + FileMissingLight, |
| 17 | + NoAccessDark, |
| 18 | + NoAccessLight, |
| 19 | + NoConnectionDark, |
| 20 | + NoConnectionLight, |
| 21 | + NoContentDark, |
| 22 | + NoContentLight, |
| 23 | + NoMatchDark, |
| 24 | + NoMatchLight, |
| 25 | + NoSitesDark, |
| 26 | + NoSitesLight, |
| 27 | + NotFoundDark, |
| 28 | + NotFoundLight, |
| 29 | + SettingsDark, |
| 30 | + SettingsLight, |
| 31 | + SuccessDark, |
| 32 | + SuccessLight, |
| 33 | + TeamDark, |
| 34 | + TeamLight, |
| 35 | + UnderConstructionDark, |
| 36 | + UnderConstructionLight, |
| 37 | +} from "@axiscommunications/fluent-illustrations"; |
| 38 | + |
| 39 | +export const Illustration: Record< |
| 40 | + string, |
| 41 | + ReturnType<typeof bundleIllustrationSmart> |
| 42 | +> = { |
| 43 | + "add-user-profile": bundleIllustrationSmart( |
| 44 | + AddUserProfileDark, |
| 45 | + AddUserProfileLight |
| 46 | + ), |
| 47 | + data: bundleIllustrationSmart(DataDark, DataLight), |
| 48 | + devices: bundleIllustrationSmart(DevicesDark, DevicesLight), |
| 49 | + "empty-folder": bundleIllustrationSmart(EmptyFolderDark, EmptyFolderLight), |
| 50 | + "empty-space": bundleIllustrationSmart(EmptySpaceDark, EmptySpaceLight), |
| 51 | + "file-missing": bundleIllustrationSmart(FileMissingDark, FileMissingLight), |
| 52 | + general: bundleIllustrationSmart(EmptyGeneralDark, EmptyGeneralLight), |
| 53 | + "no-access": bundleIllustrationSmart(NoAccessDark, NoAccessLight), |
| 54 | + "no-connection": bundleIllustrationSmart(NoConnectionDark, NoConnectionLight), |
| 55 | + "no-content": bundleIllustrationSmart(NoContentDark, NoContentLight), |
| 56 | + "no-match": bundleIllustrationSmart(NoMatchDark, NoMatchLight), |
| 57 | + "no-sites": bundleIllustrationSmart(NoSitesDark, NoSitesLight), |
| 58 | + "not-found": bundleIllustrationSmart(NotFoundDark, NotFoundLight), |
| 59 | + settings: bundleIllustrationSmart(SettingsDark, SettingsLight), |
| 60 | + success: bundleIllustrationSmart(SuccessDark, SuccessLight), |
| 61 | + team: bundleIllustrationSmart(TeamDark, TeamLight), |
| 62 | + "under-construction": bundleIllustrationSmart( |
| 63 | + UnderConstructionDark, |
| 64 | + UnderConstructionLight |
| 65 | + ), |
| 66 | +} as const; |
0 commit comments